Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 324 Bytes

bTree.md

File metadata and controls

4 lines (3 loc) · 324 Bytes

二叉树

常见的二叉树 堆 二叉搜索树 ,其中二叉搜索树的定义是一定是左节点以及左子树都要小于根节点,右子树整个都要大于该节点。,并且左右子树也分别是二叉搜索树,并且空树也是二叉搜索树,这是定义。

至于堆,请看堆.md