摘要: 选择排序:稳定 适用于:数据量大,并且对稳定性有要求的情况。 public class MergeSort { public static void main(String[] args) { int[] a= {3,4,2,5,1}; mergeSort(a,0,a.length-1); Syst 阅读全文
posted @ 2019-04-25 14:02 上官蓓儿 阅读(986) 评论(0) 推荐(0) 编辑
摘要: 选择排序:稳定 适用于:数据量不大,并且对稳定性有要求,基本有序的情况。 public class BubbleSort{ public static void main(String[] args) { int[] a= {5,4,9,8,7,6,0,1,3,2,1}; bubbleSort(a) 阅读全文
posted @ 2019-04-25 08:59 上官蓓儿 阅读(551) 评论(0) 推荐(0) 编辑