搜索资源列表
shiyan01
- 功能强大,包括:创建新十字链表、节点删除、节点插入、打印十字链表 、存盘、文件中恢复(读出)矩阵、检索指定矩阵元素(关键字是行列下标) 、检索一个指定矩阵元素(关键字是矩阵元素值)-powerful features, including : creating a new Cross List, delete nodes, the nodes to insert, print Cross Chain, archive, the paper recovery (read) matrix, retr
DouList
- 双向连表的演示程序 1、创建连表 2、在头部增加节点 3、在尾部增加节点 4、插入节点 5、删除节点 6、遍历连表
btree
- 为数据库创建索引的B+树的算法实现。功能包括创建删除节点、条目等。最终将树递归打印于屏幕。(包含内存资源管理)
1097
- 里面有4个代码,用c语言写的,分别可以创建链表,插入,删除节点等
Text
- 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct
DEGREE
- 1、提取原蛋白质相互作用网络的所有节点 2、分别计算原蛋白质相互作用网络每个节点的度 3、从所有节点中选择具有最高度的节点,反复的添加边,直到它的度值等于原蛋白质相互作用网络该节点的度值 4、在为节点添加边时,从剩余节点中选择节点的方法是其度分布近似服从power-low分布 5、令t的值为零,则每个节点被选到的可能性都是相同的,由于在原蛋白质相互作用网络存在大量的低度节点,所以集散节点会优先连接低度节点。 这样创建的网络就为负相关蛋白质互作网络
BiTree
- BiTree 实现二叉树的基本功能,创建,先序、中序、后序、层序遍历,查找双亲和孩子节点,插入删除节点,功能很完善; 调试了很久,基本没有bug了,不敢保证,如果遇到什么问题,请发邮件至horsewhite32@hotmail.com,笔者将不胜感激 uuhorse
binarytree
- 二叉树排序的例子 包括几个基本操作:插入节点,排序,创建等。
twol
- 二叉树的建立与遍历 可实现: (1)树的创建采用先序方式,用特殊符号0表示左、右子树为空 (2)每次输入一个节点的值,可以根据自己的需要设计不同的节点结构 (3)节点的值为非零数 (4)可以()形式输出创建的树 (5)用先序后序和中序遍历树 (6)销毁树
linklist.tar
- 多叉树实现,抽象树节点内容,用回调函数实现内容创建 比较 销毁 -Multi-tree realization of the abstract tree node content, using a callback function to achieve content creation compared the destruction of
xx
- 数据结构实验报告链表的操作,包括创建空链表、插入、删除节点等-Experimental Report list data structure operations, including creating an empty list, insert, delete nodes, etc.
link
- 数据结构链表 创建链表,删除元素,插入元素,查找元素,检查给定的插入位置的正确性,节点移动,单链表-Create a linked list data structure linked list, deleting elements, inserting elements, find elements, check to set the location of the correctness of insertion, node movement, a single list
bitre
- 第一题:求二叉树的高度 第二题:输出二叉树中各节点的值及所对应的层次数 第三题:数组二叉树转化成链式二叉树 第四题:复制二叉树T1到T 第五题:交换左右孩子节点的指针的值 第六题:先序创建二叉数-this is a bitree , there are six functions
BiTree
- 二叉树的实现,实现创建二叉树,遍历二叉树,删除节点等-the development of Bitree
list
- list方法,包含创建list和创建节点-function of list
multi_file_op_bitree
- 一个很好的二叉树的程序,可以在vc++6.0环境下执行,可以创建,先序,中序,后序遍历,还可以输出树的叶子节点,按树状打印该二叉树-A good binary tree program, you can run under vc++6.0, you can create, the first order, in order, after traversing, you can output the tree leaf node, print the binary tree by tree
tree
- 二叉树的创建、先序遍历、中序遍历、后续遍历、叶子数、节点数等的统计-Binary tree creation, the first order traversal, inorder traversal, the follow-up traversal, leaf number, number of nodes and other statistics
XShortest
- Dijkstra算法,A*算法和D*算法 Dijkstra算法是典型最短路算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。Dijkstra算法能得出最短路径的最优解,但由于它遍历计算的节点很多,所以效率低。 Dijkstra算法是很有代表性的最短路算法,在很多专业课程中都作为基本内容有详细的介绍,如数据结构,图论,运筹学等等。 Dijkstra一般的表述通常有两种方式,一种用永久和临时标号方式,一种是用OPE
BinaryTreeTraversal
- 先创建一个二叉树,然后进行中序遍历,输出节点内容,之后对二叉树叶子节点进行计数,从而实现对二叉树的基本操作!-First create a binary tree, and then in-order traversal, the contents of the output node, and then count the leaf nodes of the binary tree in order to achieve the basic operation of a binary tree
btree
- 先序递归创建二叉树,计算二叉树中叶子节点的个数-Create a binary tree recursive first order to calculate the number of leaf nodes in binary tree