The Wayback Machine - https://web.archive.org/web/20201102210610/https://github.com/sfturing/binarytree
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

README.md

BinaryTree

BinaryTree Traversal

二叉树的三种遍历方法(递归与非递归)(src/cn/sfturing/thread/binarytree)

(1). 先序遍历:根节点->左节点->右节点。
(2). 中序遍历:左节点->根节点->右节点。
(3). 后序遍历:左节点->右节点->根节点。

线索二叉树 (src/cn/sfturing/traversal/binarytree)

(1). 二叉树的线索化。
(2). 线索二叉树的遍历。

About

👑BinaryTree Traversal , Threaded binary-trees 二叉树的遍历,线索二叉树线索化以及遍历

Topics

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.