線性表定義與操做——順序表

typedef int Position; typedef struct LNode *List; struct LNode { ElementType Data[MAXSIZE]; Position Last; }; 初始化 List MakeEmpty() { List L; L = (List)malloc(sizeof(struct LNode)); L->La
相關文章
相關標籤/搜索