用java请使用冒泡排序算法编写程序,实现对数组{25,24,12,76,101,96,28}的排序。
时间: 2023-09-14 14:03:16 浏览: 97
好的,以下是Java实现冒泡排序算法的程序:
```java
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {25, 24, 12, 76, 101, 96, 28};
bubbleSort(arr);
System.out.println(Arrays.toString(arr));
}
public static void bubbleSort(int[] arr) {
for (int i = 0; i < arr.length - 1; i++) {
for (int j = 0; j < arr.length - 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]`。
相关问题
Java编写请使用冒泡排序算法编写程序,实现对数组{25,24,12,76,101,96,28}的排序。
当然可以。以下是使用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`。
请使用JAVA冒泡排序算法编写程序,实现对数组{25,24,12,76,101,96,28}的排序:
当然可以,下面是一个简单的Java冒泡排序算法的例子,用于对给定的数组进行排序:
```java
public class BubbleSortExample {
public static void main(String[] args) {
int[] array = {25, 24, 12, 76, 101, 96, 28};
bubbleSort(array);
System.out.println("Sorted array is:");
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 - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
// 交换元素
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
这个程序首先定义了一个`bubbleSort`函数,它使用两层嵌套循环来比较并按顺序排列数组中的元素。然后,在`main`函数中,我们创建了一个数组并调用了`bubbleSort`对其进行排序,最后打印出排序后的结果。
阅读全文