集合和數組的排序

1.數組的排序數組

      int[] arr=new int[]{3,2,6,4};spa

      Arrays.sort(arr);blog

2.單列集合的排序 排序

      List<Integer> list=new ArrayList<Integer>();io

      Collections.sort(list);List

      HashSet<Integer> hs=new HashSet<Integer>();im

      List list2=new ArrayList(hs);sort

      Collections.sort(list2);db

集合排序底層仍是數組排序,用的無非是冒泡排序或者快速排序img

3.雙列集合HashMap的排序

 

相關文章
相關標籤/搜索