脚踏实地
全部博文(230)
发布时间:2013-12-09 23:11:16
严版的数据结构中,把他们归类为查找这一章节中。【9.2节 动态查找表】1. 注意静态和动态查找的区别后者是在查找的过程中会对源table进行更改,比如插入不存在的元素或者删除已存在的元素。如果是有序表的静态查找,推荐二分。 斐波那契和插值查找不太好用。。。9.1.3 节静态树表感觉现实中应用不大,各个元素被查找的.........【阅读全文】
发布时间:2013-12-05 20:17:29
2-3 TreeFiles: tree23.c, tree23.hA B-tree maintains its balance by ensuring that the paths from the root toleaves are all equal in length. The 2-3 tree is one of several variations ofB-trees. A node in a 2-3 tree has either two or three children, except forthe speci.........【阅读全文】
发布时间:2011-10-19 23:18:07
注意:在进行CreateBiTree的时候,输入的时候 0代表终止,是有讲究的,比如输入3个字符,会加上4个0,2个字符对应3个零,并且对应前序遍历,所以输入2 8 6 0 0 0 0代表根节点2,左节点为8,8的左节点为6.若是2 8 0 0 6 0 0 ,代表根节点1, 左节点8,右节点为6#include ".........【阅读全文】