摘要:
堆栈的定义与操作-顺序存储typedef int Position;struct SNode { ElementType *Data; /* 存储元素的数组 */ Position Top; /* 栈顶指针 */ int MaxSize; ... 阅读全文
posted @ 2018-05-09 15:24
focus5679
阅读(490)
评论(0)
推荐(0)
摘要:
线性表的定义与操作-顺序表typedef int Position;typedef struct LNode *List;struct LNode { ElementType Data[MAXSIZE]; Position Last;}; /* 初始化 *... 阅读全文
posted @ 2018-05-09 15:21
focus5679
阅读(118)
评论(0)
推荐(0)