摘要: 1 typedef struct Vex2 {3 int Vexs;4 struct Vex *next;5 }Vex;6 7 Vex vexList[20];和Vex * vexList = (Vex * )malloc(sizeof(Vex)* 20);有什么不同?Vex vexList[20]; // 这种方式不能根据输入情况分配,数组个数应该是静态的变量 阅读全文
posted @ 2013-10-29 09:33 红杉 阅读(516) 评论(0) 推荐(0) 编辑