Java编写请使用冒泡排序算法编写程序,实现对数组{25,24,12,76,101,96,28}的排序。
时间: 2024-09-27 17:15:09 浏览: 44
当然可以。以下是使用Java编写的冒泡排序算法来对给定数组{25, 24, 12, 76, 101, 96, 28}进行排序:
```java
public class BubbleSortExample {
public static void main(String[] args) {
int[] array = {25, 24, 12, 76, 101, 96, 28};
// 冒泡排序函数
bubbleSort(array);
// 打印排序后的数组
for (int num : array) {
System.out.print(num + " ");
}
}
// 冒泡排序算法
public static void bubbleSort(int[] arr) {
int n = arr.length;
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - 1 - i; j++) {
if (arr[j] > arr[j + 1]) {
// 交换元素位置
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
运行此程序后,你将看到排序后的数组:`12 24 25 28 76 96 101`。
阅读全文