选择排序0

package sort;

/**
* @author feng
* @Date 2022/1/3 8:46
* 选择排序
* 找出最小元素,然后交换位置
*/
public class SelectSort {
public static void main(String[] args) {
int[] array = {20, 40, 30, 10, 60, 50};
int[] s1 = SelectSortMethod(array);
for (int i = 0; i < s1.length; i++) { System.out.print(" "+s1[i]); } } private static int[] SelectSortMethod(int[] array) { int min, temp; for (int i = 0; i < array.length - 1;

选择排序0最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/11930.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>