The pseudocode for Hanoi Tower is as follows:
solve(N, Src, Aux, Dst)
if N is 0 return
solve(N-1, Src, Dst, Aux)
Move N from Src to Dst
solve(N-1, Aux, Src, Dst)
Write the Java program based on the pseudocode in the above.
2009年6月15日 星期一
Lab Factorial
Lab Recursive method
2009年6月1日 星期一
Lab Modular Sorting
訂閱:
文章 (Atom)