搜索资源列表
BST1
- 运用伸展树的特性,每次插入新的结点后,调用展开函数,使得新结点成为所建树的根结点。-Use of the characteristics of the splay tree, each time you insert a new node, call to function, making the new node intoFor the achievements of the root.
BTree101
- 二叉树的递归算法:计算高度、结点个数、交换左右儿子问题的描述写一完整函数,计算树的结点数目int CountNode(BTNode< T> * &t);完善以下两个函数:计算树的高度int Depth(BTNode< T> * &root);对树的所有子树交换左右孩子void swapsons(BTNode< T> * &t);-Binary Tree Recursive Algorithm: Calculate the height of node number, th
