资源列表
1002
- poj1002代码,考虑的比较全面,值得推荐,互相学习-poj1002 code
Tree
- 源程序(C语言)对二叉树进行了一些基础操作,包括二叉树的初始化,遍历(先序)输入,凹入表输出等。-Source code (C language) had some basis for binary operations, including the initialization of a binary tree traversal (first order) input, recessed table output.
xishujuzhnedezhuanzhiyucunchu
- 通过三元组和快速转置两种方法实现对稀疏矩阵 的转置与存储-Through a triple and rapid transposed two methods of sparse matrix The transpose and storage
binary_tree_levelorder
- binary_tree_level_order(二叉树层排序): 输入:数组{1,2,3,4,5,6,7,8,9,10},建立二叉树,再进行层排序. 输出:输出排序结果.
yinhangjia
- 银行家算法 适合操作系统课设 自己编的-Banker
Dijkstra
- Dijkstra算法思想:每次从V-S取出具有最短特殊路径长度的顶点u,将u添加到S中同时对数组dist作必要的修改,一旦s包含了所有v中顶点,dist就记录了从源到其他顶点之间的最短路径长度。-Dijkstra Algorithm idea: Every time out from the VS special path with the shortest length of vertex u, u will be added to the S in the same time, make t
SerializeBinaryTreeAndReconstruct
- 将二叉树序列化 并且重建,序列化时用#代替叶子节点的空孩子节点,详细地写满了注释。-Serialize Binary Tree And Reconstruct
yuesehu
- 是数据结构的内容约瑟夫环 的源码,希望对正在读的人有帮助-data structure is the source of Josephus hope that the right people are reading help
3spline.txt
- 一个实现三次样条插值的C代码,希望对朋友们有用。
shouyinzhushou
- 根据系统全部零钱内钱币的信息,按钱币总张数最少的原则进行退币, 零钱总数:50元的10张,20元的20张,10元的50张,5元的100张,1元的100张,5角的200张,1角的500张,一角以下的可以丢弃。-According to the information system within all change coins, the coins, the total number of at least the principle of the coin, change the total n
erfenjiansuo
- 算法设计与分析实验:实现二分检索问题。界面友好,程序简单清晰,功能齐备。值得采纳!-Experimental Design and Analysis of Algorithms: the question of the realization of binary search. Friendly interface, simple and clear procedures, functions. Worthy of adoption!
2
- 二叉排序树的创建与使用 (时间限制为:1000毫秒) 描述: 二叉排序树的定义是:或者是一棵空树,或者是具有下列性质的二叉树:(1)若它的左子树不空,则左子树上所有的结点值均小于它的根结点的值;(2)若它的右子树不空,则右子树上所有结点的值均大于或等于它的根结点的值;(3)它的左右子树也分别为二叉排序树。现要求根据输入的元素值,构造一棵二叉排序树,并输出其先序遍历、中序遍历和后序遍历结果。 输入: 输入第一行为测试用例个数n,接下来为n个测试用例,每个测试用例占两