用spring boot 写一个冒泡排序
时间: 2023-05-17 19:07:53 浏览: 76
可以使用以下代码实现冒泡排序:
```java
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class BubbleSortApplication {
public static void main(String[] args) {
SpringApplication.run(BubbleSortApplication.class, args);
int[] arr = {5, 2, 8, 3, 9, 1};
int temp;
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]) {
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
}
```
这段代码使用了双重循环来实现冒泡排序,首先将数组中的元素进行两两比较,如果前一个元素比后一个元素大,则交换它们的位置,直到整个数组都被排序完成。最后输出排序后的结果。
阅读全文