摘要: 1 /** 2 有向图的十字链表存储 3 */ 4 #include 5 #include 6 #include 7 #define N 5 8 #define MAX 50 9 typedef struct _ArcBox{ 10 int tailvex,headvex;///弧尾弧头顶点位置 11 struct _ArcBox* out,*in... 阅读全文
posted @ 2016-07-25 14:57 赤云封天 阅读(372) 评论(0) 推荐(0) 编辑