我知道河内塔背后的想法并且知道算法,但我在实施它时遇到了麻烦。
class Hanoi:
def __init__(self, n):
== code==
def move(self, src, dst):
=code for moving the disk from source to destination==
def spare(self, src, dst):
==Returns the peg which is not src and dst==
def print_pegs(self):
h = Hanoi(4)
def hanoi(n, src, dst):
if n==1:
h.move(src,dst)
else:
spare=h.spare(src,dst)
hanoi(n-1,src,spare)
hanoi(1,src,dst)
hanoi(n-1,spare,dst)
hanoi(4, 0, 2)
我遇到的问题是我不知道如何将递归定义与类函数结合起来移动磁盘。
答案 0 :(得分:1)
您需要将递归调用放在move()
和spare()
的正文中,并将函数hanoi()
的逻辑移到相关方法中
所以
class Hanoi(object):
# snip
def move(self, src, dst):
# your logic goes here
# example of a recursive call
self.move(foo, bar)