摘要: #include <stdio.h> #define INF 32767 typedef struct MGraph{ char vertexs[10]; int edge[10][10]; int ver_num, edge_num; }MGraph; void create_graph(MGra 阅读全文
posted @ 2016-11-20 18:03 unicoe 阅读(224) 评论(0) 推荐(0) 编辑