(String[] args)
| 2 | |
| 3 | public class Question { |
| 4 | public static void main(String[] args) { |
| 5 | int capacity_per_substack = 5; |
| 6 | SetOfStacks set = new SetOfStacks(capacity_per_substack); |
| 7 | for (int i = 0; i < 34; i++) { |
| 8 | set.push(i); |
| 9 | } |
| 10 | for (int i = 0; i < 34; i++) { |
| 11 | System.out.println("Popped " + set.pop()); |
| 12 | } |
| 13 | } |
| 14 | } |