Skip to content
New issue

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

btree.py里面的preorder_trav_use_stack #17

Closed
alittlebitcool opened this issue Dec 23, 2018 · 1 comment
Closed

btree.py里面的preorder_trav_use_stack #17

alittlebitcool opened this issue Dec 23, 2018 · 1 comment

Comments

@alittlebitcool
Copy link

里面插入的是不是应该为peek 而不是 subtree

@PegasusWang
Copy link
Owner

PegasusWang commented Dec 23, 2018

hi, 是有问题的已经更新了 master。之前代码有两个问题:

  • 应该是 push peek 的 left 和 right,手误写了 subtree
  • 使用 stack 后进先出之后需要先 push right,再 push left 。
    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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants