BinaryTree
BinaryTree Traversal
二叉树的三种遍历方法(递归与非递归)(src/cn/sfturing/thread/binarytree)
(1). 先序遍历:根节点->左节点->右节点。
(2). 中序遍历:左节点->根节点->右节点。
(3). 后序遍历:左节点->右节点->根节点。
线索二叉树 (src/cn/sfturing/traversal/binarytree)
(1). 二叉树的线索化。
(2). 线索二叉树的遍历。
| ★ wanayoo — archive 1999 https://github.com/sfturing/binarytree | Nouvelle recherche | Portail wanayoo |
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up| Failed to load latest commit information. | |||
|
|
binarytree | ||
|
|
README.md | ||
BinaryTree Traversal
(1). 先序遍历:根节点->左节点->右节点。
(2). 中序遍历:左节点->根节点->右节点。
(3). 后序遍历:左节点->右节点->根节点。
(1). 二叉树的线索化。
(2). 线索二叉树的遍历。