(int u, int preEdge, int status, int e)
| 38 | public static int stacksize; |
| 39 | |
| 40 | public static void push(int u, int preEdge, int status, int e) { |
| 41 | stack[stacksize][0] = u; |
| 42 | stack[stacksize][1] = preEdge; |
| 43 | stack[stacksize][2] = status; |
| 44 | stack[stacksize][3] = e; |
| 45 | stacksize++; |
| 46 | } |
| 47 | |
| 48 | public static void pop() { |
| 49 | stacksize--; |