【良心出品】采用邻接矩阵完成无向图的“建立、深度遍历、广度遍历”操作
/* 采用邻接矩阵完成无向图的“建立、深度遍历、广度遍历”操作 */#include "stdio.h"#include "string.h"#define TRUE 1#define FALSE 0