growing
发布时间:2016-05-08 13:47:50
像细胞一样分裂来维持平衡template<class K,int M = 3>struct BtreeNode{ BtreeNode() :_size(0) ,_parent(NULL) .........【阅读全文】
发布时间:2016-04-25 13:17:32
1.以下四种方式时需要旋转templatestruct AVLTreeNode{????AVLTreeNode(const K& key,const V& value)????????:_left(NULL)???????&n.........【阅读全文】
发布时间:2016-04-15 18:15:03
二叉查找树是每一个几点都满足左孩子小于根,右孩子大于根的数。为查找而生。1.创建bool Insert(BSTNode*& root,const K& key,const V& v) { if(root == NULL) &.........【阅读全文】