Skip to content

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

Notifications You must be signed in to change notification settings

sfturing/binarytree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages