摘要: 栈是应用较广的一种数据结构,分为链栈和顺序栈。 链栈的实现: 顺序栈的实现: #include <iostream> using namespace std; int *stack; int top=0; void push(int x,int size) { if(top==size) { cou 阅读全文
posted @ 2019-11-02 15:21 supreme刘能 阅读(155) 评论(0) 推荐(0)