代码的解释?
public static void sort(int a[]) { for (int i = 0; i < a.length - 1; i++) { for (int j = 0; j < a.length - i - 1; j++)-->这行代码代表什么啊?谁能解释下 { if (a[j] > a[j + 1]) { int temp = a[j]; a[j] = a[j + 1]; a[j + 1] = temp; } } } } }
public static void sort(int a[]) { for (int i = 0; i < a.length - 1; i++) { for (int j = 0; j < a.length - i - 1; j++)-->这行代码代表什么啊?谁能解释下 { if (a[j] > a[j + 1]) { int temp = a[j]; a[j] = a[j + 1]; a[j + 1] = temp; } } } } }
2016-03-14
举报