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