用java 冒泡排序排列数组 13,4,6,35,98,45,12
时间: 2023-03-28 18:02:24 浏览: 89
java利用冒泡排序对数组进行排序
5星 · 资源好评率100%
可以使用以下代码实现冒泡排序:
```
public static void bubbleSort(int[] arr) {
int n = arr.length;
for (int i = ; i < n - 1; i++) {
for (int j = ; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
public static void main(String[] args) {
int[] arr = {13, 4, 6, 35, 98, 45, 12};
bubbleSort(arr);
System.out.println(Arrays.toString(arr));
}
```
输出结果为:[4, 6, 12, 13, 35, 45, 98]
阅读全文