搜索资源列表
AVLtree
- 在各种各样的搜索算法中,AVL树的搜索算法可以将其最短的搜索时间做一个保证,本程序就是实现了AVL搜索算法-in a wide variety of search algorithm, AVL tree search algorithms can be the shortest time to do a search that The procedure is to achieve the AVL Search Algorithm
Rhapsody_2007_09_19
- 提供了rbtree ttree avltree list hashtable等常用容器的算法,代码经过uclinux + arm44b0平台验证
AVLTree
- c++ 实现的AVL搜索树。希望站长采纳。
tele
- 本为电话号码查询系统,其中avltree的删除在书上没有,这是仿照殷人昆 数据结构 写的,与其的插入函数对应,在源码中自己找吧^_^
AVLtree
- 经典数据结构算法实现 平衡二叉树的建立和维护
avltree算法
- 数据结构avltr-data structure avltr
avl
- AVLTREE,数据结构中AVL树的C语言实现
avlTree
- avlTree&bst c++实现代码
datastr
- C/C++常用的数据结构类 包括: array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltr
avlTree
- 平衡二叉树的高效率实现,可用于一般的数据查找,检索,效率非常高!-Balanced binary tree to achieve high efficiency, can be used for general data search, retrieval, efficiency is very high!
AVLTree
- 平衡二叉树的建立,增加,删除,有问题还可以请联系我,联系方式在程序中.-Construction,insert,delete of AVL Tree.
AVLTree_0.9
- 数据结构课作业 AVLTree算法 附带算法讲解-Class data structure algorithm operating on the fringe AVLTree algorithm
AVLTree
- this program design AVL tree with Graphical tr-this program design AVL tree with Graphical tree
AVL_BST
- 完整实现BST与AVLtree的功能 包括树的一节一节点的建立与一点一点的的删除-Binary search tree and AVL tree
AVLtree
- 自认为数据结构作业里比较困难的一道程序,实现AVL的添加,删除,旋转操作-Since that data structure operations in a difficult process to achieve AVL to add, delete, rotate operation
avltree
- 平衡二叉树C++模板类 平衡二叉树C++模板类 平衡二叉树C++模板类-AVLTree C++ class template
AVLtree
- AVLtree数据结构平衡二叉树-AVLtree balanced binary tree data structures. . . . . . . .
AVLTree
- AVLTree basic operation: Insert, delete, kth min
AVLTree
- 数据结构,平衡二叉树 平衡二叉树(Balanced Binary Tree)又被称为AVL树(有别于AVL算法),且具有以下性质:它是一 棵空树或它的左右两个子树的高度差的绝对值不超过1,并且左右两个子树都是一棵平衡二叉树。构造与调整方法 平衡二叉树的常用算法有红黑树、AVL、Treap等。 最小二叉平衡树的节点的公式如下 F(n) F(n-1)+F(n-2)+1 这个类似于一个递归的数列,可以参考Fibonacci(斐波那契)数列,1是根节点,F(n-1)是左子树的节点数量,F(n-2)是
IsSameAvlTree
- 根据按照一定格式输入的数据建立搜索树并判断两棵树是否是同一颗搜索树。(Judge the trees is same AvlTree.)