#define MaxSize 10;
struct Node{
ElemType data;
int next;//下一个元素的数组下标
};
void testLinkList(){
struct Node a[MaxSize];//数组a作为静态链表
}
02-26
216
04-11
96
#define MaxSize 10;
struct Node{
ElemType data;
int next;//下一个元素的数组下标
};
void testLinkList(){
struct Node a[MaxSize];//数组a作为静态链表
}