摘要: #include #include using namespace std; //定义初始化长度和每次增加的长度 const int STACK_INIT_SIZE=10; const int STACK_INCREAMENT=2; struct Stack{ int* base; //栈底 int* top; //栈顶 int stacksize; //已分... 阅读全文
posted @ 2016-10-21 22:20 寻觅beyond 阅读(2992) 评论(0) 推荐(0) 编辑
返回顶部