使用Java写一个冒泡排序
时间: 2023-04-03 20:00:52 浏览: 87
好的,这是一个关于编程的问题,我可以回答。以下是使用 Java 编写的冒泡排序的代码:
```
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {5, 2, 8, 3, 9, 1};
bubbleSort(arr);
for (int i : arr) {
System.out.print(i + " ");
}
}
public static void bubbleSort(int[] arr) {
int temp;
for (int i = ; i < arr.length - 1; i++) {
for (int j = ; j < arr.length - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
这个程序使用冒泡排序算法对一个整数数组进行排序。
阅读全文