(int u, int f, int nl, int nr, int e)
| 62 | public static int stacksize; |
| 63 | |
| 64 | public static void push(int u, int f, int nl, int nr, int e) { |
| 65 | stack[stacksize][0] = u; |
| 66 | stack[stacksize][1] = f; |
| 67 | stack[stacksize][2] = nl; |
| 68 | stack[stacksize][3] = nr; |
| 69 | stack[stacksize][4] = e; |
| 70 | stacksize++; |
| 71 | } |
| 72 | |
| 73 | public static void pop() { |
| 74 | --stacksize; |