纯python和调用C语言接口实现汉诺塔的速度对比 - Gavin_Hall的博客 - CSDN博客
1. 纯python实现:
代码如下:
import time
def hanoi2(n):
cnt = 0
def move(x, y):
nonlocal cnt
cnt += 1
print("{}: \t{} ---> {}".format(cnt, x, y))
def hano(n, one='A',...
原创
2019-08-26 11:05:21 ·
430 阅读 ·
0 评论