搜索资源列表
图的邻接表实现
- 图的邻接表示实现。用来在C++环境下实现图的邻接表示。(数据结构程序)-adjacent said of the plan to achieve. C environment for the realization of the plan under the adjacent said. (Data Structure procedure)
16.在有向图中查找由v1到v2的所有路径
- 建立一个有向图 给定任意2个顶点 求得两个顶点间的所有路径 然后打印 数据结构中有此例题-to establish a plan to set arbitrary vertex obtained two vertices between the two paths before all print data structure of this example
算法补充
- 数据结构(c语言版)算法补充。从线形表到树。图-data structure (c language version) algorithm added. Alignment from tree to table. Map
WindowsApplicationYY
- 用C#制作的扫雷游戏,利用数据结构(图的深度搜所),具备windows游戏的高级功能 -C# produced by the mine games, the use of data structures (Figure seized by the depth), with the windows of the advanced features of the game
graph
- 关于数据结构图的基本操作,有构建,删除节点,添加节点,输入输出等
FibonacciHeap
- FibonacciHeap是一种优先队列,就平均而言有很好的性能,所以在一些图论算法中可以用来作改进算法的数据结构,尤其是那些稀疏图,总之是很好的工具。下面以设计者的角度简单描述我设计它的过程和思路。
DataTypeDemo7.2
- 这是我在公司空闲时写的一个数据结构库,用OO实现,两层继承关系,从双向链表实现到图.希望大家多提建议~!-This is my spare time in the company write a data structure for use OO achieved, the two-tier succession, from two-way to achieve Chain map. We hope more suggestions ~!
图遍历应用
- 数据结构的图的遍历应用程序设计算法实现的源代码,请大家多多指教。-data structure plans Ergodic application design algorithm source code, please exhibitions.
75448174c_alg
- c++常用算法集,包含数据结构,图论等成熟经典算法 -c++ commonly used algorithms, including data structures, graph theory, such as mature classical algorithm
Alex
- 大二数据结构实验课的几个源码(顺序表的合并、多项式的合并、栈和队列的基本操作、稀疏矩阵的运算、二叉树基本操作、图的存储和应用)-Experimental data structure sophomore class several source (the order form merger, the merger of polynomial, stack and the basic operation of the queue, sparse matrix computation, the ba
shujujiegou
- 数据结构课件 包含链表的建立、排序、栈、树已经图的应用等。-Data structure contains the list of the establishment of software, sort, stack, tree has map applications.
tu
- 数据结构“图”的遍历,尤其针对数据结构课程设计-Data structure " map" of the traverse, in particular data structure for curriculum design
tu2
- 数据结构“图”的遍历,尤其针对数据结构课程设计-Data structure " map" of the traverse, in particular data structure for curriculum design
template
- 数据结构的一些代码,包含链表,栈,树,图等,源代码内容翔实,正确-Some of the code data structures, including linked lists, stacks, trees, maps, informative source code, the correct
mylist
- 纯C语言实现的通用链表(类)源代码 纯C语言代码实现的通用链表(类)源代码,可在bc++、tc,tc++等这些老古董编译器以及gcc、vc6.0、vc2005中通过编译,觉得不错的下载研究研究,不能抓到截图。 一些说明: 为了可扩展使用,下面的结点结构中用TYPE指定数据类型,使用时请按照需要在list_def.h中把TYPE定义为合适的类型,并且提供三个原型函数,第一个用来为TYPE类型的数据赋值,第二个判断两个TYPE类型的数据是否相等,第三个用来打印(显示)TYPE
DataStructure
- C#语言版本的各种数据结构的代码,包括线性表、循环链表、堆栈、队列、矩阵、树、图及各种查找算法的代码。-C# language versions of the various data structures of the code, including the linear form, circular linked list, stack, queue, matrix, tree, graph, and a variety of search algorithm code.
littletree
- 采用加边法实现网络中的生成最小生成树,是数据结构里面关于图论的内容的实现。-Bordered method used to achieve the formation of minimum spanning tree network, which is a data structure diagram of the contents on the implementation.
Algorithm
- 数据结构以及某些图论算法、数论算法 List/ArrayList等 VS2010-Data structure and some graph algorithms, number theory algorithms List/ArrayList etc. VS2010
sicily-searching-map
- 数据结构中图的实现广度优先和宽度优先算法的C++源代码-Data structures, breadth-first and breadth-first algorithm C++ source code
fujiati
- 输入 数据少于10组,保证只有一个源点和汇点。输入一个顶点数n(2<=n<=10000),边数m(1<=m <=50000)。接下来m行输入边,分别是边起点sv,边终点ev,边权值w(1<=sv,ev<=n,sv != ev,1<=w <=20)。数据保证图连通。 输出 关键路径的权值和,并且从源点输出关键路径上的路径(如果有多条,请输出字典序最小的) 输入样例 9 11 1 2 6 1 3 4 1 4 5 2 5 1 3 5