亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何獲取一個數組中不重復的元素

如何獲取一個數組中不重復的元素

郎朗坤 2018-08-17 10:13:39
Integer[] array = new Integer[]{1,2,3,1,2,3,4};如何取到4?
查看完整描述

1 回答

?
阿晨1998

TA貢獻2037條經驗 獲得超6個贊

import java.util.ArrayList;import java.util.List;import java.util.Map;import java.util.HashMap;import java.util.Random;public class FindRepetition {    private static final int index = 100000;    private static int[] nums = new int[index];    
    static {
        Random random = new Random();        for(int i = 0; i < index; i++) {
            nums[i] = random.nextInt(index);
        }
    }    
    public static void main(String... args) {        long startTime1 = System.currentTimeMillis();
        List<Integer> result1 = findRepetitionTime(nums);
        System.out.println(String.format("時間效率優先,耗時:%s", (System.currentTimeMillis() - startTime1)));        long startTime2 = System.currentTimeMillis();
        List<Integer> result2 = findRepetitionSpace(nums);
        System.out.println(String.format("時間效率優先,耗時:%s", (System.currentTimeMillis() - startTime2)));
    }    
    //時間效率優先
    private static List<Integer> findRepetitionTime(int... nums) {
        List<Integer> result = new ArrayList<Integer>();
        Map<Integer, Integer> countMap = new HashMap<Integer, Integer>(8);        for(int num: nums) {            if(countMap.containsKey(num)) {
                countMap.put(num, countMap.get(num));
            } else {
                countMap.put(num, 1);
            }
        }        for(Map.Entry<Integer,Integer> entry: countMap.entrySet()) {            if(entry.getValue() == 1) {
                result.add(entry.getKey());
            }
        }        return result;
    }    
    //空間效率優先
    private static List<Integer> findRepetitionSpace(int... nums) {
        List<Integer> result = new ArrayList<Integer>();        for (int i = 0; i < nums.length; i++) { 
            int count = 0;//標記重復次數
            for (int j = 0; j < nums.length; j++) {                if(nums[i] != nums[j]) {
                    count++;
                }                if(count==nums.length-1) {
                    result.add(nums[i]);                    break;
                }
            }
        }        return result;
    }
}

print:

時間效率優先,耗時:78空間效率優先,耗時:8102

上面的代碼是兩種方法的時間對比,時間和空間自己衡量,至于那種方法更好,各有各的優點。第一個消耗的空間多一點,第二個耗時長一點


查看完整回答
反對 回復 2018-09-03
  • 1 回答
  • 0 關注
  • 1318 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號