set是如何做到去重的?

Posted 冲冲冲冲冲冲!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了set是如何做到去重的?相关的知识,希望对你有一定的参考价值。

set是如何做到去重的?

按照万能的百度的答案:不操作直接返回false?
我说这两个答案,面试官很明显都是持有怀疑的态度
翻回去看jdk源码,我才发现。。。都不对

hashset中add()方法:

    public boolean add(E e) 
        return map.put(e, PRESENT)==null;
    

点进去,map的put方法

    final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
                   boolean evict) 
        Node<K,V>[] tab; Node<K,V> p; int n, i;
        if ((tab = table) == null || (n = tab.length) == 0)
            n = (tab = resize()).length;
        if ((p = tab[i = (n - 1) & hash]) == null)
            tab[i] = newNode(hash, key, value, null);
        else 
            Node<K,V> e; K k;
            if (p.hash == hash &&
                ((k = p.key) == key || (key != null && key.equals(k))))
                e = p;
            else if (p instanceof TreeNode)
                e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
            else 
                for (int binCount = 0; ; ++binCount) 
                    if ((e = p.next) == null) 
                        p.next = newNode(hash, key, value, null);
                        if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                            treeifyBin(tab, hash);
                        break;
                    
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        break;
                    p = e;
                
            
            if (e != null)  // existing mapping for key
                V oldValue = e.value;
                if (!onlyIfAbsent || oldValue == null)
                    e.value = value;
                afterNodeAccess(e);
                return oldValue;
            
        
        ++modCount;
        if (++size > threshold)
            resize();
        afterNodeInsertion(evict);
        return null;
    

答案很明显:只要是调用了add()方法,无论如何都缓存数据,如果遇到key重复的时候,那么put()的返回值就是PRESENT对象的地址值,非null值,自然就会返回false,反之返回true

以上是关于set是如何做到去重的?的主要内容,如果未能解决你的问题,请参考以下文章

set是如何做到去重的?

set是如何去重的?

set / ... 去重的方法

js之数组去重的方法

JS数组去重的方法

new Set去重的用法