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