摘要: 选择排序:稳定 适用于:数据量不大,并且对稳定性有要求并且数据局部或者整体有序的情况。 public class InserSort { public static void main(String[] args) { int[] a= {1,4,3,2,6,5}; insertSort(a); S 阅读全文
posted @ 2019-04-24 09:55 上官蓓儿 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 选择排序:不稳定 适用于:数据量不大,并且对稳定性没有要求的情况。 public class SelexctSort { public static void main(String[] args) { Scanner in=new Scanner(System.in); char[] s=in.n 阅读全文
posted @ 2019-04-24 09:49 上官蓓儿 阅读(408) 评论(0) 推荐(0) 编辑