用Java编写一个冒泡排序
时间: 2023-03-22 22:02:19 浏览: 111
用java写的一个冒泡排序器
好的,这是一个很好的编程问题,下面是用Java编写冒泡排序的代码:
```
public class BubbleSort {
public static void main(String[] args) {
int[] arr = {64, 34, 25, 12, 22, 11, 90};
bubbleSort(arr);
System.out.println("排序后的数组:");
for(int i=0; i<arr.length; i++) {
System.out.print(arr[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;
}
}
}
}
}
```
这个程序实现了冒泡排序算法,它可以对一个整数数组进行排序,从小到大排序。
阅读全文