搜索资源列表
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;
AVL
- 实现avl树插入删除搜索操作 可以进行演示-The avl tree insert delete search operation demonstrate
avl
- avl树的插入删除操作,并包括判断输入的二叉查找树是否为avl树,以及把二叉查找树转换为avl树-AVL tree insertion deletion, and includes judgments entered binary search tree for the AVL tree, and the binary search tree is converted to AVL tree
AVL
- 中序线索化AVL树,很实用的说-Clues in the sequence of AVL tree, it is useful that
AVLTree
- AVL树的实现,其中包括BST树的建立以及平衡函数-AVL tree realize, including the BST tree set up and strike a balance between function and so on
AVL
- AVL program .......... Displays the AVL tree graphically at each rotation-AVL program .......... Displays the AVL tree graphically at each rotation..........
AVL-TREE
- 实现了AVL_tree的插入与删除功能 及AVL_tree的线索化,并心图形的方式打印出结果-Implement insert and remove of a node in a AVL-tree
avltree
- complete source code for avl tr-complete source code for avl tree
AvlTree
- AVL tree implementation
AVLTree
- avl tree algorithm - Self – Balanced Binary Search Tree -avl tree algorithm- Self – Balanced Binary Search Tree
AVLDict_Final_Non_Unicode
- A simple dictionary using AVL tree :)
avl-tree
- avl-tree for data structures
myDictionary_1
- avl tree,用avl tree实现的电子字典-avl tree, with the avl tree implementation of electronic dictionaries
avl
- avl tree implementation data structures
AVLTree
- AVL树的查询 插入 删除,代码完整,可直接使用-AVL tree insertion deletion query, code integrity, and can be used directly
AVL_Tree
- AVL Tree implementation
avl
- AVL树的实现,随机生成健值,统计左旋,右旋,左右双旋,右左双旋次数-AVL tree implementation, the value of randomly generated health, statistics, L, D, around two-spin, the number of right-left double rotation
avl
- windows操作系统下,AVL树的创建及插入,删除等算法,适合初学者-windows operating system, AVL tree creation and insertion and deletion algorithms, suitable for beginners
AVL
- AVL树,是我大二的作业题目,由我自己课后单独完成,希望能帮到大家-AVL tree。this is my practice during the second year of my college.
AVL, Boyemoore, BST
- AVL tree, Boyemoore search, Binary Search Tree C Program