使用Java写一个冒泡排序
时间: 2023-03-25 14:03:40 浏览: 87
好的,我可以回答这个问题。以下是使用 Java 写的冒泡排序代码:
```
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {5, 3, 8, 4, 2};
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 - 1 - i; j++) {
if (arr[j] > arr[j + 1]) {
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
```
这段代码可以对一个整数数组进行冒泡排序,将数组中的元素从小到大排列。
阅读全文