顺序表
#define MaxSize 50
typedef struct{
int data[MaxSize];
int length;
}SqList;
L.data=(int *)malloc(sizeof(int)*InitSize);
int *B=(int *)malloc(n*sizeof(int));
单链表
typedef struct LNode{
int data;
struct LNode *next;
}LNode,*Linklist;
LinkList L=(Linklist)malloc(sizeof(LNode));
LNode *s=(LNode *)malloc(sizeof(LNode));