python汉诺塔问题
摘要:
解析请看代码后面👇 1 import turtle 2 3 class Stack: 4 def __init__(self): 5 self.items = [] 6 def isEmpty(self): 7 return len(self.items) == 0 8 def push(self 阅读全文
posted @ 2020-03-29 16:13 c-pig 阅读(331) 评论(0) 推荐(0) 编辑