搜索资源列表
FamilyTree
- 最近公共祖先的家谱树 1. 正确构造了家谱树,实现了简单的查询:如查找祖先,查找家长,查找孩子, 查找兄弟,查找配偶,遍历所有家族成员等等。 2. 正确实现了插入,删除,结婚等操作。 3. 实现了一些复杂的查询,如:查找某人的所有子孙,查找某人的兄弟姐妹,部 分实现了给出两人,查询称呼的功能。(但对于过分复杂的关系暂时还不能实现。) 新增功能 1. 正确实现了不相交集合类(disjointSet.h)。 2. 正确利用并查集实现了LCA(Least Common
BinaryTree
- 二叉树建立,插入,删除,遍历范例,是学习数据结构的一个实例-Binary tree set up, insert, delete, traverse example, are studying an example of data structure
Newtree
- 以二叉链表为存储结构,建立二叉树、先序遍历二叉树、求二叉树节点总数、叶子数、树高度的算法。队列抽象数据类型的顺序、链式表示与实现,并可对上面建立的二叉树按层次遍历。-List in Binary for the storage structure, the establishment of binary tree, the first tree traversal, and the total number of tree nodes, the number of leaves, tree he
bitree
- 二叉树遍历程序,非递归方法实现,请参考,数据结构使用-Binary tree traversal procedures, non-recursive method of implementation, please refer to the data structure uses
3
- 我自己写的小程序,都是数据结构时候的试验,花了心血的,主要包括二叉树的一些遍历算法(都是非递归实现的),Huffman编码,还有多项式的混合运算,包括加减乘除-I write small programs, are data structures when the experiment took effort, and mainly includes a number of binary tree traversal algorithm (both non-recursive implement
Tree
- 数据结构中树的程序,包括二叉树,线索二叉树,树与森林的遍历,堆,以及Huffman树等。-Tree data structure in the process, including binary trees, Threaded Binary Tree, tree and forest traversal, heap, and the Huffman trees.
bianliconggengdaoyezi
- C语言版的数据结构,利用遍历二叉树算法实现C语言的编程,即从根到路子结点的路径。-C language version of the data structure, binary tree traversal algorithm using C programming language, from the root to the path of the path nodes.
bainlishubaogao
- 这是我们数据结构的实验,内容报告:分别采用递归和非递归算法建立二叉树;采用先序、中序和后序三种方式遍历该二叉树;按层次遍历该二叉树。 -This is the data structure of the experiment, the contents of the report: were used to establish the recursive and non recursive algorithm binary tree using the first order, the o
1
- 关于数据结构中二叉树的运用,主要讲述二叉树的遍历方法,包括前,后,中序遍历-tree data
bintree
- 二叉树的遍历,非递归方法,数据结构知识,实验报告!-Binary tree traversal non-recursive method, data structure knowledge, experimental reports!
Non-recursive-traversal
- 二叉树的非递归遍历完整源代码,对初学数据结构的人非常有用-Non-recursive binary tree traversal complete source code, useful for beginner data structure
TREE
- 实现二叉树非递归遍历,有利新手学习数据结构。-er cha shu fei di gui bian li
binarytree
- 二叉树的顺序存储结构——已知用户将一棵完全二叉树的n个结点(数据类 型可以是字符型、整型等等)以自顶向下、从左到右顺序输 入到一个一维数组中: (1)编写算法FindRelation(i),输出i的父结点和 所有孩子结点(如果有的话)。(2)编写算法Print打印这棵二叉树的所有节点:先打印二叉树的 根、再打印左子树、最后打印右子树;(即在顺序存储结构上先序遍历 二叉树); -Stored in the order of the binary tree
structure
- 数据结构课程设计,二叉树的建立与遍历,猴子选大王等源代码-Data structure curriculum design, build and binary tree traversal, such as source code monkey king election
erchashu
- 非递归-二叉树遍历,数据结构中遍历二叉树各子树的程序-Binary tree search
erchashu
- 二叉树的建立,前序遍历。中序遍历,后序遍历,数据结构课程设计。-Establishment of a binary tree, preorder traversal. Preorder, postorder traversal, data structures course design.
include
- c 语言实现二叉树的遍历,插入,删除等 数据结构实验-c language to achieve binary tree traversal, insert, delete, etc. experimental data structure
Desktop
- 数据结构 java版本 二叉树的创建 序遍历,中序遍历,后序遍历 +考试题目(Ordered traversal, inorder traversal, backward traversal)
TLRandLTR1
- 数据结构学习过程中二叉树的遍历的程序,前序中序。(three different array through the analysis of getting three different array from the same tree using three different algorithm: preorder traversal, inorder traversal and postorder traversal.)
BinaryTreeRestore
- 重建二叉树.依据某二叉树的前序遍历和中序遍历结果,重建该二叉树。(binary tree restore. According to the forward-sequence and middle-sequence result of the binary tree to restore the binary tree.)