搜索资源列表
tubianli
- 图的遍历的演示(c 语言 数据结构课程设计题) /*定义图*/ typedef struct{ int V[M] int R[M][M] int vexnum }Graph /*创建图*/ void creatgraph(Graph *g,int n) { int i,j,r1,r2 g->vexnum=n /*顶点用i表示*/ for(i=1 i<=n i++) { g->V[i]=
graph
- 就是一些图的基本操作 包括遍历 求最小生成树等
tree
- 图的遍历,一个关于在数据结构中的问题,包括前序,后序,中序。-Graph traversal, a data structure on the problem, including the former sequence, after the sequence, in the order.
333
- 利用图论的知识实现了最小生成树的算法,包括创建图,然后遍历图的每个节点输出生成树的节点-Knowledge of graph theory to achieve the minimum spanning tree algorithms, including the creation of maps, and then traverse the graph spanning tree output nodes for each node
7777
- 在内存中创建一个图,主要用到了数据结构中连接链表的知识,最后能够遍历整张图的节点-Create a map in memory, the main data structure used to connect the knowledge of the list, the last to traverse the entire graph node
Graph-traversal
- 图的遍历,图的深度递归遍历算法,深度遍历非递归算法,图的广度遍历-Graph traversal.The depth traverseof the graph including recursion algorithm or not and breadth traverse of the chart.
arc
- 运用二叉树求代数表达式的值,将代数表达式的每个符号用二叉树结点表示,遍历图的每一结点,按结点值得不同采用不同运算方式-Solving algebraic expressions binary tree
qpc_4.5.02
- QP量子编程最新源码 QP: Quantum Programming QP是一个通用的事件驱动框架,面向MCU,面向并发的层次式状态机模型。 QP包含了1个轻量级的QK(Quantum Kernel)。 QEP:Quantum Event Processor是一个通用的,可移植的,可重用的状态机引擎。 QEP允许你直接把UML样式的状态图映射为代码。 QEP提供了传统的简单平面状态机和层次式状态机。QEP可以直接操作事件队列和事件分发机制。 QF是一个通用的,事件驱动
allroute
- 该程序遍历了源点到终点的所有路径,能够所搜得到所有的路径并写入到记事本中,在图论中有广泛的应用。-The program traverses all the paths of the source point to the end point, be able to search to get all of the paths and written into Notepad, and a wide range of applications in graph theory.
DFStu.cpp
- 这份代码是一个深度搜索图的实例代码,但是效率不是很高,只能实现深度优先的遍历-The code is written for DFS to search for the answers! enjoy it please everybody.I use this stage at the first time.
work5_1
- 无向图的遍历,深度优先遍历,广度优先遍历。-Undirected graph traversal, depth-first traversal, breadth-first traversal.
tudebianli
- 图的遍历,用邻接矩阵实现无向图,数据结构算法,C实现-Graph traversal, adjacency matrix to achieve an undirected graph data structure algorithms, C to achieve
tu
- 使用C++高级程序设计语言实现对图的遍历等算法-C++ using high-level programming language for graph traversal algorithms