摘要: 点击鼠标自动生成顶点,包括图的深度遍历View Code 1 #include <stdio.h> 2 #include<stdlib.h> 3 4 typedef struct ArcNode 5 { 6 int data; 7 struct ArcNode *nextarc; 8 }ArcNode; 9 typedef struct VexNode10 {11 char name[20];12 struct ArcNode *firstnext;13 int adjnum;14 }Vex_Node[20];15 16 17 typedef st... 阅读全文
posted @ 2011-12-23 17:41 pipicfan 阅读(304) 评论(0) 推荐(0) 编辑