十大经典排序算法
文章出处:https://www.cnblogs.com/onepixel/articles/7674659.html
其中插入排序算法也可这样写:
public void insertSort(){//插入排序算法 int args[] = new int[]{3,4,1,8,5,9}; for(int i=1;i<args.length;i++){ for(int j=i;j>0;j--){ if (args[j]<args[j-1]){ int temp=args[j-1]; args[j-1]=args[j]; args[j]=temp; }else { break; } } }
if you want to go fast,go alone,if you want to go far,go together