順序棧的定義及相關操做

#include <stdio.h> #define M 1000 typedef char ElemType; typedef struct //定義一個順序棧 { ElemType data[M];//棧中最多可放M個元素 int top;//用來存放棧頂元素的下標,top爲-1表示棧空 } SeqStack; void InitStack(SeqStack *s)//建
相關文章
相關標籤/搜索