摘要: 栈: 队列 单链表 双链表 1.栈 #include <bits/stdc++.h> using namespace std; const innt N = 1e6 + 10; //栈 stk -->数组模拟栈 tt--> 栈顶 int stk[N], tt ; //进栈 void push(int 阅读全文
posted @ 2021-03-02 17:04 Carrot_Rui 阅读(73) 评论(0) 推荐(0)