栈之顺序结构和链式结构

栈的顺序结构实现html typedef int Position; struct SNode { ElementType *Data; /* 存储元素的数组 */ Position Top; /* 栈顶指针 */ int MaxSize; /* 堆栈最大容量 */ }; typedef struct SNode *Stack; Stack Cre
相关文章
相关标签/搜索