(int u, int f, int e)
| 65 | public static int stackSize, u, f, e; |
| 66 | |
| 67 | public static void push(int u, int f, int e) { |
| 68 | ufe[stackSize][0] = u; |
| 69 | ufe[stackSize][1] = f; |
| 70 | ufe[stackSize][2] = e; |
| 71 | stackSize++; |
| 72 | } |
| 73 | |
| 74 | public static void pop() { |
| 75 | --stackSize; |