(int u, int f, int t, int e)
| 97 | public static int stacksize; |
| 98 | |
| 99 | public static void push(int u, int f, int t, int e) { |
| 100 | stack[stacksize][0] = u; |
| 101 | stack[stacksize][1] = f; |
| 102 | stack[stacksize][2] = t; |
| 103 | stack[stacksize][3] = e; |
| 104 | stacksize++; |
| 105 | } |
| 106 | |
| 107 | public static void pop() { |
| 108 | --stacksize; |