java對一個int數組進行排序、去重

思路:
一、使用 HashSet 進行去重
二、將 HashSet 變爲 TreeSet
三、使用 TreeSet 進行排序
四、將 Set 變爲 Integer 數組
五、將 Integer 數組變爲 int 數組數組

/**
 * @Author: DaleyZou
 * @Description:  對 candidates 數組進行排序、去重
 * @Date: Created in 10:43 2018-8-23
 * @Modified By:
 */
public class sortArray {
    public static void main(String[] args){
        /**
         思路:
         一、使用 HashSet 進行去重
         二、將 HashSet 變爲 TreeSet
         三、使用 TreeSet 進行排序
         四、將 Set 變爲 Integer 數組
         五、將 Integer 數組變爲 int 數組
         */
        int[] candidates = {1,1,2,2,2,9,8,7,76,84,54,45}; // 初始化一個須要排序、去重的int數組
        HashSet<Integer> hashSet = new HashSet<Integer>(); // 去重
        for (int i = 0; i < candidates.length; i++){
            hashSet.add(candidates[i]);
        }
        Set<Integer> set = new TreeSet(hashSet);            // 利用TreeSet排序
        Integer[] integers = set.toArray(new Integer[]{});

        int[] result = new int[integers.length];            // 咱們排序、去重後的結果數組
        for (int i = 0; i < integers.length; i++){
            result[i] = integers[i].intValue();
        }

        Arrays.stream(result).forEach(System.out::println); // 將結果數組輸出
    }
}
相關文章
相關標籤/搜索