摘要: #include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef struct{ ElemType *base; ElemType *top; int stackSize; }sqStack; // 初始化栈 initStack(sqStack *s){ s... 阅读全文
posted @ 2017-06-10 11:56 胡卫雄 阅读(230) 评论(0) 推荐(0)