1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| class Stack { private: int* s = new int[1]; int N = 0; int length = 1; public: bool isEmpty() { return N == 0; } void resize(int capacity) { int* copy = new int[capacity]; for (int i = 0; i < length; i++) copy[i] = s[i]; s = copy; }
void push(int x) { if (N == length) { resize(length * 2); length *= 2; } s[N++] = x;
}
int pop() { int item = s[--N]; if (N > 0 && N == length / 4) { resize(length / 2); length /= 2; } return item; }
int getLength() { return length; }
};
|