共计 614 个字符,预计需要花费 2 分钟才能阅读完成。
以下是使用 Java 编写选择排序算法的代码:
public class SelectionSort {public static void selectionSort(int[] arr) {int n = arr.length;
// 遍历数组
for (int i = 0; i < n - 1; i++) {// 找到未排序部分的最小元素的索引
int minIndex = i;
for (int j = i + 1; j < n; j++) {if (arr[j] < arr[minIndex]) {minIndex = j;}
}
// 将最小元素与当前未排序部分的第一个元素交换位置
int temp = arr[minIndex];
arr[minIndex] = arr[i];
arr[i] = temp;
}
}
public static void main(String[] args) {int[] arr = {64, 25, 12, 22, 11};
selectionSort(arr);
System.out.println(" 排序后的数组:");
for (int i : arr) {System.out.print(i + " ");
}
}
}
此代码中的 selectionSort
方法使用选择排序算法对传入的整数数组进行排序。在每一次迭代中,它找到未排序部分的最小元素的索引,然后将其与未排序部分的第一个元素交换位置。在主方法中,我们创建了一个示例数组并调用 selectionSort
方法进行排序。最后,我们将排序后的数组打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完