美文网首页
二叉树遍历

二叉树遍历

作者: gzxultra | 来源:发表于2018-06-16 16:25 被阅读0次

    二叉树的遍历分为深度优先遍历(Depth First Traversal)和广度优先遍历(Breath First Traversal also called Levelorder Traversal)。其中深度优先遍历又分为先序遍历(Preorder Traversal),中序遍历(Inorder Traversal)和后续遍历(Postorder Traversal)。

    Pre-order Traversal

    Visit the root, traverse the left subtree, traverse the right subtree.

    • recursive
    • stack

    In-order Traversal

    Traverse the left subtree, visit the root, traverse the right subtree.

    • recursive
    • stack

    Post-order Traversal

    Traverse the left subtree, traverse the right subtree, visit the root.

    • recursive
    • stack

    相关文章

      网友评论

          本文标题:二叉树遍历

          本文链接:https://www.haomeiwen.com/subject/lkebeftx.html