用java语言编写冒泡排序
时间: 2023-05-12 15:06:05 浏览: 87
用java写的一个冒泡排序器
当然可以,以下是一个简单的冒泡排序的 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 n = arr.length;
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
这个程序使用冒泡排序算法对一个整数数组进行排序。
阅读全文