搜索资源列表
Arbori_AVL
- I have uploaded a project that implements AVL trees, and the programming language is LISP.
AVLTrees
- AVL Trees in C or C-AVL Trees in C or C++
Search
- 用C++实现的一些经典的搜索算法,包括AVL树,跳表等算法,很高效,很实用。-C++, to achieve some of the classic search algorithms, including AVL trees, jump tables and other algorithms, very efficient and very practical.
avlTree
- 平衡二叉树,又称AVL树。它或者是一棵空树,或者是具有下列性质的二叉树:它的左子树和右子树都是平衡二叉树,且左子树和右子树的高度之差之差的绝对值不超过1.。 -Balanced binary tree, also known as AVL tree. It is either an empty tree, or a binary tree with the following properties: it left sub-tree and right sub-trees are bala
AVLtree
- 二叉搜索树的avl树问题,创建avl树及有关的问题-Binary search tree avl tree problem, create avl trees and related problems
avl_2008
- This code is very helpful for C and/or C++ coders. It contains good examples about avl trees.
AVL-trees-demo
- This a Pascal library for AVL Trees + graphics demo which demonstrates the library functions and AVL trees behaviour.-This is a Pascal library for AVL Trees + graphics demo which demonstrates the library functions and AVL trees behaviour.
CS2208_DSLab_Programs
- CS2208 - Data Structures Lab (Anna University) EXERCISES 1a. Implement singly linked lists. 1b. Implement doubly linked lists. 2. Represent a polynomial as a linked list and write functions for polynomial addition. 3. Implement stack and
AVLTree
- AVL 树是平衡二叉搜索树,所以首先 必须满足搜索树,即l_child值<parent值<=r_child值。这个在前面已经实现了。插入和删除不停的递归就可以。-Two AVL tree is balanced binary search trees, so we must first meet the search tree, l_child value and <parent value of <=r_child value. The in front has bee
DSAAIC
- Mark ALLEN Weiss的著名书籍数据结构与算法分析里面的源代码,包括基本的数据结构,如链表、栈、队列、堆、树、AVL树、红黑树、各种排序算法.-Mark ALLEN Weiss' s famous book data structure and algorithm analysis inside the source code, including basic data structures such as linked lists, stacks, queues, heap,
Chap06
- 数据结构中的树相关的算法和源代码,包括AVL树、BST树和优先队列等,自己用VC6.0编写的。-Tree data structure algorithms and related source code, including AVL tree, BST trees and priority queues, etc., own VC6.0 prepared.
Data-Structure-and-algorithms-CPP
- c++实现数据结构的所有代码。包括线性表,树,图,排序,hash等。线性表实现堆栈,队列及约瑟夫环等多个应用,树实现哈夫曼树编码及译码,AVL树,线索化二叉树,森林和二叉树的相互转化等等,图实现图的几种建立方法,拓扑排序,最短路径,最大连通子图,双连通分量,最小生成树,关键路径算法等等,排序实现归并排序,快速排序,堆排序,shell排序,冒泡排序,选择排序,插入排序等,并对性能进行分析。hash实现闭散列表,开散列表,带溢出表的内散列表等,并使用5种hash函数。帮助同学们系统的学习数据结构及算