1. 首页
  2. 操作系统
  3. 桌面系统
  4. c_数据结构_图的相关操作

c_数据结构_图的相关操作

上传者: 2020-11-08 07:19:50上传 CPP文件 5.67KB 热度 9次
数据结构中图的相关操作 C语言 #include <stdio h> #include <malloc h> #include <string h> #define MAXVEX 100 typedef char VertexType[3]; 定义VertexType为char数组类型 typedef struct vertex { int adjvex; 顶点编号 VertexType data; 顶点的信息 } VType; 顶点类型 typedef struct graph {
用户评论