class SelectSort{ public void sort(int arr[]){ int temp=0; for(int i=0;i
for(int j=i+1;jarr[j]){ min=arr[j]; } } temp=min; min=arr[minIndex]; arr[minIndex]=temp;
}
}
}
本文共 331 字,大约阅读时间需要 1 分钟。
class SelectSort{ public void sort(int arr[]){ int temp=0; for(int i=0;i
for(int j=i+1;jarr[j]){ min=arr[j]; } } temp=min; min=arr[minIndex]; arr[minIndex]=temp;
}
}
}
转载于:https://blog.51cto.com/7929163/1659076