搜索资源列表
avl树
- AVL树的创建与基本操作-AVL Tree and the creation of basic operation
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlN
AVL树实现
- AVL的c语言实现
AVL树的建立及操作
- 哈工大数据结构AVL树
avl树
- AVL树的创建与基本操作-AVL Tree and the creation of basic operation
datastruct
- 安全数组 普通链表 哈希表 二叉搜索树 AVL树 集合类 通用自动机 所有类均使用模板编写,并不特定于 Windows 平台,只要有 C++ 编译程序的操作平台都可使用。-security array ordinary Chain Hash Table 2 forks search tree AVL Tree collections Universal Automatic machine is used in all types of
20040530100445
- 常用数据结构算法代码库,包括AVL树,链表,堆栈,hash,排序等-common data structure algorithm code base, including AVL Tree, List, Stack, hash, sort etc.
AVLTtreeSource
- 这个程序时avl树的所有算法的实现,包括插入删除新建排序,是数据结构学习者的极佳材料,VC实现-this procedure when all the AVL tree algorithm implementation, including delete, insert new sequencing, data structure is a very good learner materials, VC
AVL_LIB
- 独立于AVL库的存储媒体 虽现在有不少可用的AVL树库,但几乎都是工作在RAM中,当数据量小的时候,这种方式可行,但当树结构变大时时,读取和存储的时间就会大大变长,任务效率大大降低。能不能直接用磁盘进行树的操作呢?若可以,就不必进行频繁的磁盘内存交换了,本程序就实现了这个功能。实际上,这个程序无论是磁盘还是内存,都很好用。-independent of the AVL storage media is now available i
AVL___Tree
- c++编的几个数据结构代码。包括AVL树、二叉搜索树、二叉树、Kruskal算法和图的邻接表表示-c addendum to the few data structure code. Including AVL tree, binary search tree, binary tree, Kruskal map algorithm and the adjoining table
AVLdelete
- AVL树,对其进行结点的删除操作算法的程序-AVL tree, its nodes of the deletion algorithm procedures
avl_cpp
- avl树的c++实现,对于研究数据结构的树型结构有一定参考价值-avl tree c realization of research data structure for the tree structure can be useful
2006011319_avl
- AVL树的定义,包括初始化,插入,删除,采用的标准的算法,语言清晰,AVL树是一种效率比较高的平衡二叉树.-Definition of AVL trees, including the initialization, insert, delete, using the standard algorithm, the language clear, AVL tree is a relatively high efficiency of t
AVL
- AVL树的计算代码,内函几个H的头文件。帮助大家使用AVL树-AVL tree calculation code, within the letter H, a few header files. Help you use the AVL tree
Binary_Tree(AVL)
- AVL树的实现代码(包括插入,删除,统计信息等操作)-AVL tree code (including insert, delete, statistical information, such as operations)
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
- AVLTREE,数据结构中AVL树的C语言实现-AVLTREE, in the AVL tree data structure of the C language
AVL
- 改进的AVL树构造方法,本文详细讲述了AVL树动态快速的构造方法。-Improved methods of AVL tree structure, this paper to describe in detail the AVL tree fast method of constructing dynamic.
AVL
- AVL树操作代码,借鉴了《算法导论》,具有不错的借鉴价值-AVLtree operation code
AVL树
- 二叉树的ADT、搜索树的ADT、平衡二叉树的ADT。AVL树包含了AVL的建立、查找、删除操作。全部使用类模板,方便调用(ADT for binary tree, ADT for search tree, ADT for balanced binary tree. AVL tree contains the establishment of AVL, find, delete operation. All use of class te