2016-03-05 142 views
-1

我在算法教科書中看到了這個。我對中間遞歸函數感到困惑。如果你可以用一個例子來解釋它,比如4/2,那就太棒了!任何人都可以解釋這種除法算法的工作原理嗎?

function divide(x, y) 
Input: Two n-bit integers x and y, where y ≥ 1 
Output: The quotient and remainder of x divided by y 

if x = 0: return (q, r) = (0, 0) 
(q, r) = divide(floor(x/2), y) 
q = 2 · q, r = 2 · r 
if x is odd: r = r + 1 
if r ≥ y: r = r − y, q = q + 1 
return (q, r) 

回答

0

你看到它可以被2整除多少次。這實際上是執行位移和操作二進制數字。一個更有趣的例子是13/3(13是1101的二進制)。

divide(13, 3) // initial binary value - 1101 
    divide(6, 3) // shift right - 110 
    divide(3, 3) // shift right - 11 
     divide(1, 3) // shift right - 1 (this is the most significant bit) 
     divide(0, 3) // shift right - 0 (no more significant bits) 
     return(0, 0) // roll it back up 
     return(0, 1) // since x is odd (1) 
    return(1, 0) // r = r * 2 = 2; x is odd (3) so r = 3 and the r > y condition is true  
    return(2, 0) // q = 2 * 1; r = 2 * 1 - so r >= y and q = 2 + 1 
return(4, 1) // q = 2 * 2; x is odd to r = 0 + 1 
相關問題