Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

二叉树 Binary Tree

BinaryTree

二叉树(Binary Tree)每个节点至多有两个子节点,被称为左子树(left)、右子树(right)。这个demo涉及以下内容:

  • 实现一个二叉树
  • 遍历算法
    • 中序遍历
    • 前序遍历
    • 后序遍历
  • 二叉树算法题
    • 树的高度
    • 树序列化、反序列化

详细介绍查看下面文章:

https://github.com/pro648/tips/blob/master/sources/二叉树%20Binary%20Tree.md