使用java编写冒泡排序
时间: 2024-01-13 12:42:25 浏览: 58
好的,以下是使用 Java 编写的冒泡排序代码:
```java
public class BubbleSort {
public static void main(String[] args) {
int[] nums = {5, 2, 7, 1, 3};
bubbleSort(nums);
for (int num : nums) {
System.out.print(num + " ");
}
}
public static void bubbleSort(int[] nums) {
int length = nums.length;
for (int i = 0; i < length - 1; i++) {
for (int j = 0; j < length - i - 1; j++) {
if (nums[j] > nums[j + 1]) {
int temp = nums[j];
nums[j] = nums[j + 1];
nums[j + 1] = temp;
}
}
}
}
}
```
以上代码实现了冒泡排序算法,其中 `bubbleSort` 方法为一个公共方法,用于实现冒泡排序。
阅读全文