(int u, int f, int t, int e)
| 50 | public static int stacksize; |
| 51 | |
| 52 | public static void push(int u, int f, int t, int e) { |
| 53 | stack[stacksize][0] = u; |
| 54 | stack[stacksize][1] = f; |
| 55 | stack[stacksize][2] = t; |
| 56 | stack[stacksize][3] = e; |
| 57 | stacksize++; |
| 58 | } |
| 59 | |
| 60 | public static void pop() { |
| 61 | --stacksize; |