树、森林

目录

一,二叉树

二,多叉树

三,森林

四,孩子兄弟表示法


一,二叉树(Binary tree)

二叉树 https://blog.csdn.net/nameofcsdn/article/details/114459069

满二叉树、Full Binary Tree、Perfect Binary Tree https://blog.csdn.net/nameofcsdn/article/details/114559547

完全二叉树 https://blog.csdn.net/nameofcsdn/article/details/114270725

二叉搜索树(BST) https://blog.csdn.net/nameofcsdn/article/details/114281344

最优二叉树(哈夫曼树) https://blog.csdn.net/nameofcsdn/article/details/114504296

最优二叉搜索树 https://blog.csdn.net/nameofcsdn/article/details/114504382

平衡二叉树(AVL树) https://blog.csdn.net/nameofcsdn/article/details/114372257

二叉堆 https://blog.csdn.net/nameofcsdn/article/details/113484808

线段树 https://blog.csdn.net/nameofcsdn/article/details/115140781

树状数组 https://blog.csdn.net/nameofcsdn/article/details/115216141

红黑树 https://blog.csdn.net/nameofcsdn/article/details/115319186

二,多叉树

字典树(Trie,前缀树) https://blog.csdn.net/nameofcsdn/article/details/112343283

基数树(radix tree) https://blog.csdn.net/nameofcsdn/article/details/115260905

二项树(binomial tree) https://blog.csdn.net/nameofcsdn/article/details/115375700

三,森林

并查集 https://blog.csdn.net/nameofcsdn/article/details/115123576

四,孩子兄弟表示法

任何一颗树,都可以通过孩子兄弟表示法,转化成一颗二叉树。

猜你喜欢

转载自blog.csdn.net/nameofcsdn/article/details/115260255