1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
const int N = 1e5;

// [1, tt] 是栈中的元素,当栈空时 tt = 0,即 [1, 0] 区间为空
int stk[N], tt;

int main() {
stk[++tt] = 5;
stk[tt];
tt--;
if(tt > 0) {

}
return 0;
}