stack (FILO)
코드로 직접 구현
const int MX = 1000005; int dat[MX]; int pos = 0; void push(int x) { dat[pos++] = x; } void pop() { pos--; } int top() { return dat[pos - 1]; }
stl stack