数据结构 图基本操作代码
实验五 图//图的邻接矩阵存储#include "stdio.h"#include "stdlib.h"typedef struct{int adj;}AdjMatrix[10][10];ty
数据结构 图基本操作代码