选择排序算法(Java实现)
public class SelectSort {
public static void main(String[] args){
int[] arr={3,1,15,29,16,9,66,84,42,36,99};
System.out.print("给定一个无序的数组:");
for(int i:arr){
System.out.print(i+" ");
}
System.out.println("/n");
SelectSort select=new SelectSort();
select.selectSort(arr);
System.out.print("选择排序后的数组:");
for(int i:arr){
选择排序算法(Java实现)最先出现在Python成神之路。
共有 0 条评论