順序棧的完整實現

#include<stdio.h> #include<stdlib.h> #include<malloc.h>   #define STACK_INIT_SIZE 15//棧的初始空間大小 #define STACKINCREMENT 5//棧的追加空間大小   typedef struct MyStruct {     int* top;       //top指針記錄棧頂元素在棧中的位置   
相關文章
相關標籤/搜索