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