用Java写一个冒泡排序xu
时间: 2023-06-07 20:08:03 浏览: 83
很高兴为您解答这个问题。以下是一个简单的Java程序,用冒泡排序对一个整数数组进行排序:
```
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {5, 2, 9, 4, 7};
System.out.println("原始数组:");
printArray(arr);
bubbleSort(arr);
System.out.println("排序后的数组:");
printArray(arr);
}
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;
}
}
}
}
public static void printArray(int[] arr) {
for (int i : arr) {
System.out.print(i + " ");
}
System.out.println();
}
}
```
希望这个Java程序能够帮助您理解冒泡排序的实现。如果您有任何其他问题,请随时问我。
阅读全文