• 01邻接矩阵的创建C语言实现


    #include "stdio.h"
    #include "stdlib.h"
    #include "io.h"
    #include "math.h"
    #include "time.h"

    #define OK 1
    #define ERROR 0
    #define TRUE 1
    #define FALSE 0
    #define MAXVEX 100 /* 最大顶点数,应由用户定义 */
    #define INFINITY 65535

    typedef int Status; /* Status是函数的类型,其值是函数结果状态代码,如OK等 */
    typedef char VertexType; /* 顶点类型应由用户定义 */
    typedef int EdgeType; /* 边上的权值类型应由用户定义 */
    typedef struct
    {
    VertexType vexs[MAXVEX]; /* 顶点表 */
    EdgeType arc[MAXVEX][MAXVEX];/* 邻接矩阵,可看作边表 */
    int numNodes, numEdges; /* 图中当前的顶点数和边数 */
    }MGraph;

    /* 建立无向网图的邻接矩阵表示 */
    void CreateMGraph(MGraph *G)
    {
    int i,j,k,w;
    printf("输入顶点数和边数: ");
    scanf("%d,%d",&G->numNodes,&G->numEdges); /* 输入顶点数和边数 */
    for(i = 0;i <G->numNodes;i++) /* 读入顶点信息,建立顶点表 */
    scanf(&G->vexs[i]);
    for(i = 0;i <G->numNodes;i++)
    for(j = 0;j <G->numNodes;j++)
    G->arc[i][j]=INFINITY; /* 邻接矩阵初始化 */
    for(k = 0;k <G->numEdges;k++) /* 读入numEdges条边,建立邻接矩阵 */
    {
    printf("输入边(vi,vj)上的下标i,下标j和权w: ");
    scanf("%d,%d,%d",&i,&j,&w); /* 输入边(vi,vj)上的权w */
    G->arc[i][j]=w;
    G->arc[j][i]= G->arc[i][j]; /* 因为是无向图,矩阵对称 */
    }
    }

    int main(void)
    {
    MGraph G;
    CreateMGraph(&G);

    return 0;
    }

  • 相关阅读:
    课后作业03
    课堂测验02
    构建之法阅读笔记02
    进度条 二
    软件工程个人作业02
    Sprint6
    Sprint5
    Alpha版总结会议
    Beta版总结会议
    Alpha阶段项目Postmortem会议总结
  • 原文地址:https://www.cnblogs.com/nku-wangfeng/p/7637385.html
Copyright © 2020-2023  润新知