算法--leetcode-283-移动零

相当于是使用 for 进行交换的一个小技巧的练习,后面会给出一些算法的小技巧,都是总结的一些算法的小技巧。

public class Test {
    public static void main(String[] args) {

    ┆   Integer[] arr = {1, 3, 5, 0, 7, 0, 0, 0, 8, 9};

    ┆   int j = 0;
    ┆   for (int i = 0; i < arr.length; i++) {
    ┆   ┆   if (arr[i] != 0) {
    ┆   ┆   ┆  int temp = arr[j];
    ┆   ┆   ┆  arr[j] = arr[i];
    ┆   ┆   ┆  arr[i] = temp;
    ┆   ┆   ┆  j++;
    ┆   ┆   }
    ┆   }
    ┆   System.out.println(Arrays.toString(arr));
    }
}

你可能感兴趣的:(算法--leetcode-283-移动零)