2016-03-05 77 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 
相关问题