(int u, int f, int rt, int e)
| 55 | public static int stacksize; |
| 56 | |
| 57 | public static void push(int u, int f, int rt, int e) { |
| 58 | stack[stacksize][0] = u; |
| 59 | stack[stacksize][1] = f; |
| 60 | stack[stacksize][2] = rt; |
| 61 | stack[stacksize][3] = e; |
| 62 | stacksize++; |
| 63 | } |
| 64 | |
| 65 | public static void pop() { |
| 66 | --stacksize; |