Map中put和putIfAbsent的区别
力扣277周赛第三题
public List<Integer> findLonely(int[] nums) {
List<Integer> ans = new LinkedList<>();
HashMap<Integer,Integer> h = new HashMap<>();
for(int x : nums){
h.putIfAbsent(x,0);//x做key,value是x的出现次数
h.put(x,h.get(x) + 1);
}
for(int x : h.keySet()){
if(h.get(x) == 1 && !h.containsKey(x - 1) && !h.containsKey(x + 1)){
ans.add(x);
}
}
return ans;
}
}
put在放入数据时,如果放入数据的key已经存在与Map中,最后放入的数据会覆盖之前存在的数据, 而putIfAbsent在放入数据时,如果存在重复的key,那么putIfAbsent不会放入值。