1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| public class Solution {
public void swapWithZero(int[] array, int len, int n) { Main.SwapWithZero(array, len, n); }
public void sort(int[] array, int len) { if (len <= 0) { return; } for (int index = len - 1; index >= 0; index--) { int temp = array[index]; if (temp == index) { continue; } if (temp != 0) { swapWithZero(array, len, temp); }
swapWithZero(array, len, index); } } }
|