(int u, int preEdge, int status, int e)
| 47 | public static int stacksize; |
| 48 | |
| 49 | public static void push(int u, int preEdge, int status, int e) { |
| 50 | stack[stacksize][0] = u; |
| 51 | stack[stacksize][1] = preEdge; |
| 52 | stack[stacksize][2] = status; |
| 53 | stack[stacksize][3] = e; |
| 54 | stacksize++; |
| 55 | } |
| 56 | |
| 57 | public static void pop() { |
| 58 | stacksize--; |