搜索资源列表
AVLTree
- AVLTree的实现以及结点的增加删除和查找。-AVLTree the realization of the increase in node delete and search.
treetime
- 一个数据结构的课程作业,用来比较avltree,splay tree,平衡树之间的插入删除操作的时间,平均时间,内有这3种树的实现代码
avltree
- 关于avltree的源码,大家可以学习一下了
datast
- array.h: 安全数组 linkedlist.h: 普通表 dclinkedlist: 双向循环链表 hashtable.h: 哈希表 binstree.h: 二叉搜索树 avltree.h: AVL 树 如果要存储集合(元素不可重复)并快速查找,最佳的是 binstree.h(二叉搜索树)。 如果要存储二维或更高维的表格,最佳的是 hashtable.h(哈系表)。AVL 树的插入成本非常高(删除函数也没有实现),但 AVL 的搜索效率极高,所以适用于在程序开始前初始化程-NOTE:
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;
AvlTree
- 平衡树:AVL树的是一种平衡的二叉搜索树。每次插入,删除的时候需要一个局部的平衡化操作-Balanced tree: AVL tree is a balanced binary search tree. Each insertion, deletion, when the need for a balance of local operation
AVLTree
- AVL树的实现,其中包括BST树的建立以及平衡函数-AVL tree realize, including the BST tree set up and strike a balance between function and so on
AVLTree
- ATL树的源代码,可以高效的组织数据,方便查询-ATL tree source
AVLTree
- 好用的平衡二叉树类库,C++类库编写, 好用的平衡二叉树类库,C++类库编写-AVL tree implementation for C++
avltree
- complete source code for avl tr-complete source code for avl tree
AVLTree
- 用C实现的AVL搜索树的完整源码,包括插入操作和删除操作的具体实现,以及平衡的调整-AVL with C achieved a complete search tree source code, including the insertion operation and deletion of concrete realization, as well as the adjustment of balance
AvlTree
- AVL tree implementation
AVLTree
- avl tree algorithm - Self – Balanced Binary Search Tree -avl tree algorithm- Self – Balanced Binary Search Tree
AvlTree
- A C++ implementation of AVL Tree Data structure.
AVLTree
- AVL树的查询 插入 删除,代码完整,可直接使用-AVL tree insertion deletion query, code integrity, and can be used directly
avltree
- AVL tree . AVL tree is a n algrothim that can be used to study the b tech subject AAD.
AVLTree
- 数据结构作业(陈刚教) AVLTree -Data structure operations (Chen Gang Education) AVLTree
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
- the avlTree implement
AVLTree
- 数据结构课程上机编程实验实现AVLTree的一些简单功能-The simple function of AVLTree