搜索资源列表
linkedBinaryTree
- 用java实现的LinkedList二叉树,内有测试文件。-used to achieve the LinkedList binary tree, which is testing documents.
二叉树的创建及先序、中序、后序遍历
- 实现数据结构中的二叉树的创建及先序、中序、后序遍历-data structure to create the binary tree and first sequence, sequence, after the preorder
Huffman解码编码
- 使用vc++编写的一个实现huffman编码的程序,适用于数据结构中二叉树的相关程序设计-vc prepared by the use of a realization Huffman coding procedures applicable to the binary tree data structure of the design process
二叉树jian
- 这个程序采用先序建立二叉树,并分别使用递归和非递归算法实现了对该二叉树的先中后序的遍历输出,并给出了一定的使用说明-this procedure was used in order to establish a binary tree respectively, and the use of recursive and non - recursive algorithm of this binary tree after the first sequence which Ergodic outp
C++实现二叉树很好的例子
- 数据结构课程设计内容:模拟二叉排序树,用链表的形式实现二叉树.-curriculum design data structure : two simulated fork sort tree with Chain in the form of a binary tree.
erchashu1
- 这是二叉树的排序,使数据结构最基本的一个实现,希望对大家有点帮助-This is a binary tree, in order to make the most basic data structure to achieve one, we hope to help a bit
ExpressionBinaryTree
- 表达式二叉树的实现。输入任意一个前序中序或后序表达式,可生成对应的表达式二叉树并树状打印,之后用户可以选择以前序中序或后序将表达式再次输出。-expression of the realization of a binary tree. An arbitrary input before the order or sequence after sequence expressions, which will generate the corresponding binary tree and t
E64_0230
- 平衡二叉树操作的演示 一、 需求分析 (1) 利用平衡二叉树实现动态查找表。实现查找,插入和删除三种基本功能。 (2) 初始,平衡二叉树为空树,操作界面给出查找,插入和删除三种操供选择。每种操作均要提示输入关键字。每次插入和删除一个接点时,显示更新的平衡二叉树。 (3) 重点在于对删除算法的实现。假设要删除的关键字为X的结点,若X不在叶子结点上,则用左子树中的最大值或者右子树中的最小值取代X。如此反复,直到删除动作传递到某个叶子结点,删除叶子结点时,若要进行平衡变换,可采用插入的
ORDERTRE
- 在turbo C 环境下运行调试成功实现二叉排序树和排序树的查找
erchashu
- 1) 以二叉链表或三叉链表作为二叉树的存储结构; 2) 以某一种遍历的次序录入二叉树的元素,写出相应的二/三叉链表的创建算法,并上机实现该算法;
wxc_btree
- 数据结构算法(C++Builder实现)二叉树的类定义和实现
wxc_BSTree
- 数据结构算法(C++实现)二叉搜索树的类定义和实现
wxc_TBSTree
- 数据结构算法(C++实现)线索二叉树的类定义和实现
tree
- 本程序在WinTC下调试通过,主要功能是实现二叉树的遍历。
C_DadaStructure
- 数据结构实现源程序,包括堆栈-堆栈应用-中序 到 后序的转换和计算,广义表,二叉树
lzh
- 本软件是在VC++来编译,在VC++的平台下运行,运行界面是黑色屏幕,本软件是实现最优二叉查找树结点的基本操作,在执行结果的屏幕下首先输入树的结点值以-1作为输入结束,然后选择要进行的操作,选择一是显示最优二叉树,选择二是插入一个结点,选择三是查找一个结点,选择四是删除一个结点.在选择各个操作后屏幕会提示要不要继续进行(Y/N),选择Y是继续操作,选择N是退出操作.本软件界面简单,容易操作,提示语句都采用中文,简单易懂.
shuju1
- 编写程序实现下面运算:在二叉排序树中查找关键字为key的记录。
two
- 用VC2005编写的用类包装好的二叉树实现,基本功能都实现好了
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;