搜索资源列表
算法红黑树
- 这是一个利用TreeView控件的红黑树算法,我看站点上的红黑树算法不多。所以上传一个-This is a TreeView control the use of Brooklyn Tree Algorithm, I see on the site and Brooklyn Tree Algorithm little. So upload a
红黑树
- 红黑树——一种数据结构的可视化画法-RED-BLACK TREE -- A data structure visualization method of painting
红黑树是一个更高效的检索二叉树
- 红黑树是一个更高效的检索二叉树,因此常常用来实现关联数组。典型地,JDK提供的集合类TreeMap本身就是一个红黑树的实现。-Red-black tree is a binary tree search more efficient, so often used to implement associative arrays. Typically, JDK provides a collection of classes TreeMap itself is a red-black tree im
RBT.rar
- 运用C++进行红黑树的描述,对红黑树的插入、删除、查找等操作进行了实现等等。,The use of C++ for a descr iption of red and black tree on the red and black tree insert, delete, search and other operations to achieve and so on.
RBtree
- VC6++的红黑树结点插入的建树法,可以直接运行-VC6++ The red and black tree node inserted Jianshu law, can be directly run
DS_5060309818_RBTree
- 红黑树的C++实现,(上海交通大学联读班数据结构大作业1),实现了应有功能:插入,删除,查找,求树高,非递归中序遍历,以及VC界面下的Tree_View()。-Red and black tree C++ Achieve, (Shanghai Jiaotong University Joint Reading class data structure operation 1), the realization of the proper functions: insert, delete, fi
RedBlackTree
- 数据结构的红黑树算法,用c语言实现。数据结构课程设计时做的。-Data structure of the red and black tree algorithm, with c language. Data structure courses designed to do.
libcprops-0.1.6.tar
- 用C实现了线程安全的哈希表,AVL树、红黑树、HTTP客户端等等,不错的开源库,推荐使用-Achieved with C thread-safe hash table, AVL tree, red and black tree, HTTP client, etc., a good open-source database, recommend the use of
RBTreeCode
- 红黑树和二叉查找树数据结构的实现以及二者的性能比较的C语言实现代码-Red and black binary search tree and the tree data structure, as well as the achievement of the performance comparison between the C language code
avl-2.0.3
- avl树的介绍和源代码,包含avl树、红黑树等-introduction to avl tree and R-B tree
tree
- 功能全面的二叉查找树与红黑树的性能比较算法,可以输出树的外形,并且支持用户自定义调整。-Full-featured binary search trees and red-black tree performance comparison algorithm can output the tree shape, and supports user-defined adjustments.
a
- 红黑树与二叉搜索树的性能和时间的比较以及实现-Red-black tree and binary search tree and the time comparison of the performance and the achievement of
rbtree
- 关于红黑树的很好c++的实现,可以直接使用或者作为实现参考。-On the red-black tree implementation of a good c++ can be used directly or as a realization of reference.
RBtree
- 一个红黑树类模板,支持插入、删除、遍历等常用操作-A red-black tree class template, support insert, delete, traverse the other common operations
hitsd_searchAndHash
- 哈工大 软件设计开发与实践 红黑树 哈希表(Hit software redblack)
RedBlackTree
- 自己使用C++实现的一个简单的红黑树,可用codeblocks直接打开(Own simple red black tree)
rbtree
- 用C++实现的红黑树,没有BUG ,稍微改改就能直接运行了,最优的代码了,拿去研究吧,也没什么可以说的了···(C++ with the red black tree, no BUG, little changes can be directly run, the optimal code, to study it, nor what to say..)
rbTree
- 用C语言实现红黑树基本操作,rbTree.h为定义了函数的头文件,rbTree.cpp可用来测试(code for basic operations of Red/Black Tree)
红黑树检测
- 数据结构题中可以用于对生成的树是否为红黑树进行检测,并返回一个检测值
红黑树检测
- 检测你输入的树是否为红黑树 红黑树是每个节点都带有颜色属性的二叉查找树,颜色或红色或黑色。在二叉查找树强制一般要求以外,对于任何有效的红黑树我们增加了如下的额外要求: 性质1. 节点是红色或黑色。 性质2. 根节点是黑色。 性质3 每个叶节点(NIL节点,空节点)是黑色的。 性质4 每个红色节点的两个子节点都是黑色。(从每个叶子到根的所有路径上不能有两个连续的红色节点) 性质5. 从任一节点到其每个叶子的所有路径都包含相同数目的黑色节点。