順序棧的基本操作(c語言)

主要介紹出棧,入棧,棧的初始化,棧的遍歷,以及得到首元素 棧的數據結構參考嚴蔚敏的《數據結構》。 完整代碼如下: #define TRUE 1 #define ERROR -1 #define OVERFLOW -1 #define INIT_STACK_SIZE 100 #define SIZEINCREMENT 10 typedef int Elemtype; typedef int Stat
相關文章
相關標籤/搜索