1 typedef struct Vex 2 { 3 int Vexs; 4 struct Vex *next; 5 }Vex; 6 7 Vex vexList[20];
和
Vex * vexList = (Vex * )malloc(sizeof(Vex)* 20);
有什么不同?
Vex vexList[20]; // 这种方式不能根据输入情况分配,数组个数应该是静态的变量