We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
里面插入的是不是应该为peek 而不是 subtree
The text was updated successfully, but these errors were encountered:
hi, 是有问题的已经更新了 master。之前代码有两个问题:
def preorder_trav_use_stack(self, subtree): """递归的方式其实是计算机帮我们实现了栈结构,我们可以自己显示的用栈来实现""" s = Stack() if subtree: s.push(subtree) while not s.empty(): top_node = s.pop() print(top_node.data) # 注意这里我用了 print,你可以用 yield 产出值然后在调用的地方转成 list if top_node.right: s.push(top_node.right) if top_node.left: s.push(top_node.left)
Sorry, something went wrong.
No branches or pull requests
里面插入的是不是应该为peek 而不是 subtree
The text was updated successfully, but these errors were encountered: