(int u, int f, int d, int t, int e)
| 40 | public static int stacksize; |
| 41 | |
| 42 | public static void push(int u, int f, int d, int t, int e) { |
| 43 | stack[stacksize][0] = u; |
| 44 | stack[stacksize][1] = f; |
| 45 | stack[stacksize][2] = d; |
| 46 | stack[stacksize][3] = t; |
| 47 | stack[stacksize][4] = e; |
| 48 | stacksize++; |
| 49 | } |
| 50 | |
| 51 | public static void pop() { |
| 52 | --stacksize; |