(int[] arr, int a, int b, int c, int d)
| 518 | } |
| 519 | |
| 520 | void swap(int[] arr, int a, int b, int c, int d) { |
| 521 | tempi = arr[a]; |
| 522 | arr[a] = arr[c]; |
| 523 | arr[c] = tempi; |
| 524 | tempi = arr[b]; |
| 525 | arr[b] = arr[d]; |
| 526 | arr[d] = tempi; |
| 527 | } |
| 528 | |
| 529 | void swapx(int x, int y) { |
| 530 | tempi = edge[x]; |