大桔灯文库logo

相关文档

  • _c___.doc

    图邻接矩阵 邻接表的建立c_数据结构课程设计.txt如果你看到面前的阴影别怕那是因为你的背后有阳光我允许你走进我的世界但绝不允许你在我的世界里走来走去一.需求分析1.运行环境硬件:计算机48664M以上操作系统: WIN9x 以上WIN2000WIN XPWIN ME 相关软件:vistualC2.程序所实现的功能: (1)建立并显示图的邻接表 (2)深度优先遍历显示遍历结果

  • .doc

    include <stdafx.h>includeiostreamincludemalloc.husing namespace stddefine MaxVertexNum 50 定义最大顶点数typedef struct node{ 边表结点 char adjvex 邻接点域 struct node next 链域}Edge

  • 相互转换.doc

    图的邻接矩阵和邻接表相互转换图的邻接矩阵存储方法具有如下几个特征:1)无向图的邻接矩阵一定是一个对称矩阵2)对于无向图的邻接矩阵的第i行非零元素的个数正好是第i个顶点的度3)对于有向图邻接矩阵的第i行非零元素的个数正好是第i个顶点的出度(或入度)4)用邻接矩阵方法存储图很容易确定图中任意两个顶点之间是否有边相连但是要确定图中有多少条边则必须按行按列对每个元素进行检测所发费得时间代价大邻接表是

  • .doc

    邻接矩阵: : Defines the entry point for the console includeincludedefine MAXVEX 30 图的顶点个数typedef int VextexTypetypedef struct {VextexType vexs[MAXVEX]int edges[MAXVEX][MAXVEX]int ne}Mgraphvoid CreatG

  • 分别采用存储实现遍历.doc

    define INFINITY 0define INF32767define MAX_NUM 20define MAXV 100include<>typedef char VRTypetypedef enum{DG=1DNUDGUDN}GraphKindtypedef struct ArcCell{ VRType adjArcCell info}AdjMatrix[MAX_NUM][MAX_NUM

  • 遍历生成树().doc

    各种遍历算法生成树算法最小生成树算法(邻接表邻接矩阵结构) include<string.h>include<ctype.h>include<limits.h> INT_MAX等 include<stdio.h> EOF(=Z或F6)NULL include<stdlib.h> atoi() include<io.h> eof() include<math.h> floor()c

  • 广搜.doc

    include <iostream>include <cstdio>include <queue>using namespace stddefine MAX_NODE 100边typedef struct Edgenode{ int index Edgenode next}Edgenode顶点typedef struct{ char data Edgenode firste

  • 存储无向.doc

    算法功能:采用邻接表存储结构建立无向图include <>include <>define OK 1define NULL 0define MAX_VERTEX_NUM 20 最大顶点数typedef int Status 函数的类型其值是函数结果状态代码typedef char VertexTypetypedef int VRTypetypedef int InforTypetypedef

  • 遍历().doc

    include?? <iostream>??include?? <>??using?? namespace?? std????? define?? int_max?? 10000??? define?? inf?? 9999???? ? define?? max?? 20?? ? …………………………………………邻接矩阵定义……………………?? ? typedef?? struct?? ArcCe

  • 存储方法.doc

    邻接矩阵存储方法:邻接矩阵是表示顶点之间相邻关系的距阵,适合存储边数较多的稠密图。定义代码: struct VertextType {public int no;Public string data;} struct MGragh { Public int [,] edges; Public int n,e; Public VertexType[] vexs;}邻接表存储方法:图的邻接表存储方

违规举报

违法有害信息,请在下方选择原因提交举报


客服

顶部