网站首页
编程语言
数据库
系统相关
其他分享
编程问答
NumVertices
2024-09-29
14、图-邻接矩阵
1、邻接矩阵的定义和初始化#include<stdio.h>#include<malloc.h>#include<assert.h>#defineDefault_Vertices_Size10//顶点#defineTchar//无向不带权的图typedefstructGraphMtx{intMaxVertices;//最大的顶点数intNumVertices;//真实的顶点数