. 图的建立图的广度深度遍历 #include "stdio.h" #define maxsize 1000 # define n 100 typedef struct { char vexs[n] ; int arcs[n][n] ; int num ; }G; typedef struct { int data[maxsize]; int front,rear; } V; void GIni