搜索资源列表
ErChaShu
- 假设自上而下按层次,自左至右输入每个结点的一个三元组(N, P, L/R)。其中N为本结点的元素,P为其父结点,L指示N为P 的左孩子,R指示N为P的右孩子。试写一个建立二元树在内存的双链表示算法,并实现先根、中根、后根以及层序遍历算法。
capi-0.01.tar
- < 多任务下的数据结构与算法>>一书的配套源代码,含有链表、哈希表、红黑树、AVL树、复合二叉树、无碎片内存管理、垃圾内存管理、多任务遍历等源代码-" " Multi-tasking data structures and algorithms under the " " a book supporting the source code, containing lists, hash tables, red-black tree, AVL
binaryTree
- 本程序用二叉树类实现了从键盘输入二叉树的两种遍历结果,在内存中建立二叉链表,根据遍历结果恢复该二叉树,并在屏幕上显示该二叉树。整个程序采用多文件,一个头文件,一个函数实现文件,以及主函数所在文件。-The program uses a binary tree class implements a binary tree from two keyboard traversal results in memory to create the binary list, according to res
yizhilinkedlist
- 异质链表的实现。实现异质链表的查找、插入、删除和遍历。面向对象编程,类,多态,继承,虚函数,虚析构函数,内存泄露 -Heterogeneous linked list implementation. Find heterogeneous linked list to achieve, insert, delete, and traverse. Object-oriented programming, classes, polymorphism, inheritance, virtual fu
calculate
- 基于C++树结构的算术表达式计算,采用树结构将数据存于内存中,并运用前后中遍历的方法实现算式的计算-Tree structure based on C++ arithmetic expression evaluation, using a tree structure data stored in memory, and the use of before and after the traversal of the method in the calculation formula
erchashu
- 假设自上而下按层次,自左至右输入每个结点的一个三元组(N, P, L/R)。其中N为本结点的元素,P为其夫结点,L指示N为P 的左孩子,R指示N为P的右孩子。试写一个建立二元树在内存的双链表示算法,并实现先根、中根、后根以及层序遍历算法。 -Assuming that the top-down hierarchy, from left to right input each node is a triple (N, P, L/R). N oriented junction element t
binary_tree
- 从键盘输入二叉树的两种遍历结果,在内存中建立二叉链表,根据遍历结果恢复该二叉树,并在屏幕上显示该二叉树。-Binary list results from two keyboard input binary tree traversal, memory, and restore the binary tree traversal results, and the binary tree is displayed on the screen.
tree
- 定义二叉树的链式存储结构,实现下列各类应用的递归算法。 (1)构建一棵二叉树,以某种形式(括号表示法、树形表示法、凹入表示法等)输出二叉树,最后释放二叉树的存储内存。 (2)分别编写程序实现:将二叉树的顺序存储结构转换成链式存储结构;将二叉树的链式存储结构转换为顺序存储结构。 (3)实现二叉树的先序、中序、后序和层次序遍历算法。输出二叉树的叶子节点。 (4)分别计算二叉树的所有节点个数,度为0、1、2的节点个数。 (5)统计二叉树中值为k的节点个数。计算二叉树中节点最小的值。 (6)计算二叉树的
顺序表
- 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。本程序设计顺序表的创建销毁插入遍历等操作。(A sequential table is a linear list stored in an array of memory in a computer memory. It is a linear structure that sto