搜索资源列表
avl_tree
- avl树的实现: avl树是每个节点的左子树和右子树的高度最多差1的二叉查找树.一棵高度为h的avl树最少节点数由S(h) = S(h-1)+S(h-2)+1得到.avl树要保证任一节点的左右子树的高度之差的绝对值不能超过1(空树的高定义为1).在插入和删除的时候就需要根据情况对树的某些节点做调整
avl_tree
- 1.本程序由本人采用vc++ 6.0编写,包括了排序平衡二叉树的整套算法(包括插入、删除、查找以及其测试算法)。 2.运行myavl_vc.exe输入树的初始结点个数,确定后本程序将在内存中生成一棵相应结点数的二叉树,在此基础上你可以进行各种操作(插入、删除、查找以及测试其平衡性、排序性等) 3.每一个结点信息包括\"商品编码\"、\"商品名称\",且以\"商品编码\"作为关键字 4.初始生成的树的结点的商品编码为从1按顺序递增
avl_tree
- avl树的实现: avl树是每个节点的左子树和右子树的高度最多差1的二叉查找树.一棵高度为h的avl树最少节点数由S(h) = S(h-1)+S(h-2)+1得到.avl树要保证任一节点的左右子树的高度之差的绝对值不能超过1(空树的高定义为1).在插入和删除的时候就需要根据情况对树的某些节点做调整-AVL tree realization: avl tree is left to each node subtree and righ
avl_tree
- C++实现的avl树-C realization of the AVL tree
avl_tree
- avl树的插入删除调整等等基本操作及具体实现-AVL tree insertion deletion of adjustments to achieve the basic operation and the specific
AVL-TREE
- 实现了AVL_tree的插入与删除功能 及AVL_tree的线索化,并心图形的方式打印出结果-Implement insert and remove of a node in a AVL-tree
avl_Tree
- 一个用C++实现的平衡二叉树算法,实现了高度、平衡度、父子节点等-A use of C++ to achieve a balanced binary tree algorithm, to achieve a high degree of balance, such as father and son nodes
Avl_tree
- 平衡二叉树的插入 删除和查找 分裂 合并等操作-it s hard to say
avl_tree
- link listing is implemented using data structures and pointers
AVL_tree
- 哈尔滨工业大学,计算机科学与技术学院,数据结构,作业五:AVL树相关操作实现-Harbin Institute of Technology, Computer Science and Technology, data structure, operating 5: AVL tree-related operations to achieve
AVL_Tree
- AVL tree with insertion,deletion and balancing height
AVL_Tree
- AVL Tree implementation
Avl_tree
- Program sorting array of numbers using avl tr-Program sorting array of numbers using avl tree
AVL_tree
- AVl树的遍历过程,C++编程,AVL树的各种算法-AVLtree
Avl_tree
- AVLtree 同时实现了avl树的插入和删除算法,严格测试正确性,同时提供递归和非递归,算法可读性非常强 如有疑问可与作者联系qlaraya@gmail.com-AVLtree while achieving the avl tree insertion and deletion algorithms, rigorous testing accuracy, while providing recursive and non r
AVL_tree
- 实现AVL树的基本操作。定义了AVL树、结点元素。程序开始时,调用MakeEmpty()函数 将AVL树初始化,然后调用MainMenue()函数进入菜单选择项,根据输入的选择 项判断调用相应的程序,实现相应的逻辑功能。-Implement the basic operation of AVL tree. AVL tree is defined, node elements. Beginning of the program, call
AVl_Tree
- AVL平衡树,是一种很有效率二叉搜索树,利用它可以的旋转功能可以很方便的构造,很快的查找-AVL balanced tree is a very efficient binary search tree, it can use the rotation function can be constructed easily, quickly find
AVL_Tree
- 实现一个二叉平衡树,可以直接在程序中包含,然后进行使用。-It s an avl_tree which has already been realized and we can use the data structure in our own coding
AVL_tree
- AVL树数据结构的实现,环境是vc6.0-Implement AVL tree in vc6.0
AVL_tree
- 数据结构课程中的二叉平衡树的源代码,支持插入,删除等操作。-AVL Tree for data structure.