数据结构C语言实现图的建立图的广度深度遍历.doc
. 范文 图的建立图的广度深度遍历 #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 G
下载地址
用户评论