资源列表
conversion
- 数据结构的简单应用来实现数制转换,利用链式结构实现栈。-Simple application data structures to achieve number system conversion, the use of chain structure to achieve stack.
mapColour_JJCH
- 地图染色问题,邻接矩阵从文件读入,但不会写文件去。-map coloring, the adjacency matrix from the document read, but not write to document.
MoWang
- 数据结构中的魔王语言大家都知道吧,此算法实现了魔王语言,利用栈和队列实现。-the language of MoWang
stack
- 通过创建链表实现一个栈的数据结构。控制台接受输入输出。 -Using linked list to build a stack.
zhongxuxsh
- 首先建立一棵二叉树,再对其进行中序线索化,然后遍历。-First, establish a binary tree, then carries on the clues in order, then traverse.
01
- 输入两个int类型的数组,自动形成链表,同时合并。并将结果输出。-Input array of two int type, automatic formation of the list, while the merger. And the results output.
settings
- 老鼠都迷宫的设计,通过其转弯的改变达到加速的目的-miscomouse
BinaryTree
- 通过前序序列和中序序列建立唯一二叉树,实现递归前序遍历,中序遍历,后序遍历。-Through the antecedent sequence, sequence after sequence, set up the only binary tree
最小二乘法直线算法
- 最小二乘法的直线拟合算法,可用各种开发工具实现-linear least squares fitting algorithm can be used to achieve various development tools
Maze
- 进行迷宫的建立,并且进行迷宫路径的求解及输出-For the establishment of the maze, and to solve the maze path and the output
zju2864dijkstra
- zoj2864利用dijikstra算法解决最短路问题。-zoj2864 use dijikstra algorithm to solve shortest path problem.
Figure-topological-sort
- 拓扑排序 对一个 有向无环图 G进行拓扑排序,是将G中所有顶点排成一个线性序列,使得图中任 意一对顶点u和v,若u,v ∈E,则u在线性序列中出现在v之前。 通常,这样的线性序列称为满足拓扑次序的序列,简称 拓扑序列 。 注意: ①若将图中顶点按拓扑次序排成一行,则图中所有的有向边均是从左指向右的。 ②若图中存在有向环,则不可能使顶点满足拓扑次序。 ③一个DAG的拓扑序列通常表示某种方案切实可行。 -Top