搜索资源列表

  1. path_VtoU&

    0下载:
  2. 求图中从一个顶点到另一个顶点的一条路径。 //为简化算法,没有提供顶点到其编号的转换函数,函数Path_vtou(ALGraph G,VexIndex v,VexIndex u) //中两顶点参数用的是顶点的编号;函数Printpath(ListType Path)输出的是路径上的顶点编号序列-seeking a map from the vertex to another vertex of a path. / / To si
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2058
    • 提供者:姚紫欣
  1. path_VtoU&

    0下载:
  2. 求图中从一个顶点到另一个顶点的一条路径。 //为简化算法,没有提供顶点到其编号的转换函数,函数Path_vtou(ALGraph G,VexIndex v,VexIndex u) //中两顶点参数用的是顶点的编号;函数Printpath(ListType Path)输出的是路径上的顶点编号序列-seeking a map from the vertex to another vertex of a path.// To simp
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:2048
    • 提供者:姚紫欣
  1. shixiantudebianli

    0下载:
  2.  MatToList(MGraph g,ALGraph *&G):将邻接矩阵g转换成邻接表G。  ListToMat(ALGraph *G,MGraph &g):将邻接表G转换成邻接矩阵g。  DispMat(MGraph g):输出邻接矩阵g。  DispAdj(ALGraph *G):输出邻接表G。  DFS(ALGraph *G,int
  3. 所属分类:Windows编程

    • 发布日期:2024-10-03
    • 文件大小:3072
    • 提供者:小鬼
  1. data_struct7

    0下载:
  2. 数据结构课后设计题第七章 7.22③ 试基于图的深度优先搜索策略写一算法, 判别以邻接表方式存储的有向图中是否存在由顶 点vi到顶点vj的路径(i≠j)。 注意:算法中涉及 的图的基本操作必须在此存储结构上实现。 实现下列函数: Status DfsReachable(ALGraph g, int i, int j) -Data structure design question after cla
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-03
    • 文件大小:3072
    • 提供者:W.Y.T.S
  1. ALGraph

    0下载:
  2. 无向图的邻接表存储。包括具体操作,如建立、销毁、插入、删除等。-Undirected adjacency table storage. Including specific operations, such as the creation, destruction, insert, delete and so on.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:
  1. ALGraph

    0下载:
  2. “图”的邻接表表示法,用C语言编程实现,包括定义、遍历、查邻接点、输出等。-The chart adjacent table representation, use the C programming language implemented, including definition traverse check adjacency points out
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:王宁
  1. ALGraph

    0下载:
  2. 邻接链表图的代码实现,VC++开发平台,C语言描述的数据结构。-Source implementation of the adjacency lists map, VC++ development platform, the C language to describe the data structure.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-10-03
    • 文件大小:209920
    • 提供者:李海锋
  1. ALGraph

    0下载:
  2. 学数据结构自己总结的东西,希望对大家有所帮助。-Learn data structure sum things up, we want to help.
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:张强
  1. 1

    0下载:
  2. 实现带权有向图的邻接表结构创建,输出其顶点之间的最短路径. 弧结构体 typedef struct ArcNode//弧 { int adjvex //弧指向的顶点 struct ArcNode *nextarc //下一条弧 int info //弧的信息 }ArcNode  顶点结构体 typedef struct VNode//顶点 { int data //顶点数据 A
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:连云
  1. ALGraph

    0下载:
  2. 图的邻接表存储下的深度优先遍历,广度优先遍历,以及拓扑排序-Adjacency table storage, the depth-first traversal, breadth-first traversal, and topological sorting
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-10-03
    • 文件大小:162816
    • 提供者:周密
  1. alGraph

    0下载:
  2. 邻接表的深度优先遍历和广度优先遍历的操作,还有构造函数的应用-Depth-first traversal and breadth-first traversal of the adjacency list of operations, as well as the application of the constructor
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:杨珍
  1. ALGraph

    0下载:
  2. This a ALGraph program, helpful for software developers. It can be related to the data structure study of good.-This is a ALGraph program, helpful for software developers. It can be related to the data structure study of
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:2048
    • 提供者:lenny
  1. Untitled4

    0下载:
  2. 实验实现邻接表表示下无向图的广度优先遍历。 程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如: 程序输入为: a b c d e f * 0,1 0,4 1,4 1,5 2,3 2,5 3,5 -1,-1 程序的输出为:
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:王乐
  1. afafa

    0下载:
  2. 本实验实现邻接表表示下无向图的广度优先遍历。 程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如: 程序输入为: a b c d e f * 0,1 0,4 1,4 1,5 2,3 2,5 3,5 -1,-1 程序的输出为:
  3. 所属分类:其他小程序

    • 发布日期:2024-10-03
    • 文件大小:1024
    • 提供者:王乐

源码中国 www.ymcn.org