java提升篇----TreeSet

1、TreeSet定義
咱們知道TreeMap是一個有序的二叉樹,那麼同理TreeSet一樣也是一個有序的,它的做用是提供有序的Set集合。經過源碼咱們知道TreeSet基礎AbstractSet,實現NavigableSet、Cloneable、Serializable接口。其中AbstractSet提供 Set 接口的骨幹實現,從而最大限度地減小了實現此接口所需的工做。NavigableSet是擴展的 SortedSet,具備了爲給定搜索目標報告最接近匹配項的導航方法,這就意味着它支持一系列的導航方法。好比查找與指定目標最匹配項。Cloneable支持克隆,Serializable支持序列化。java

public class TreeSet<E> extends AbstractSet<E>app

implements NavigableSet<E>, Cloneable, java.io.Serializable

同時在TreeSet中定義了以下幾個變量。this

private transient NavigableMap<E,Object> m;
//PRESENT會被當作Map的value與key構建成鍵值對spa

private static final Object PRESENT = new Object();code

其構造方法:排序

//默認構造方法,根據其元素的天然順序進行排序
    public TreeSet() {
        this(new TreeMap<E,Object>());
    }
</span><span style="color: rgb(0,128,0)">//</span><span style="color: rgb(0,128,0)">構造一個包含指定 collection 元素的新 TreeSet,它按照其元素的天然順序進行排序。</span>
<span style="color: rgb(0,0,255)">public</span> TreeSet(Comparator&lt;? <span style="color: rgb(0,0,255)">super</span> E&gt;<span style="color: rgb(0,0,0)"> comparator) {
        </span><span style="color: rgb(0,0,255)">this</span>(<span style="color: rgb(0,0,255)">new</span> TreeMap&lt;&gt;<span style="color: rgb(0,0,0)">(comparator));
}

</span><span style="color: rgb(0,128,0)">//</span><span style="color: rgb(0,128,0)">構造一個新的空 TreeSet,它根據指定比較器進行排序。</span>
<span style="color: rgb(0,0,255)">public</span> TreeSet(Collection&lt;? <span style="color: rgb(0,0,255)">extends</span> E&gt;<span style="color: rgb(0,0,0)"> c) {
    </span><span style="color: rgb(0,0,255)">this</span><span style="color: rgb(0,0,0)">();
    addAll(c);
}

</span><span style="color: rgb(0,128,0)">//</span><span style="color: rgb(0,128,0)">構造一個與指定有序 set 具備相同映射關係和相同排序的新 TreeSet。</span>
<span style="color: rgb(0,0,255)">public</span> TreeSet(SortedSet&lt;E&gt;<span style="color: rgb(0,0,0)"> s) {
    </span><span style="color: rgb(0,0,255)">this</span><span style="color: rgb(0,0,0)">(s.comparator());
    addAll(s);
}

TreeSet(NavigableMap</span>&lt;E,Object&gt;<span style="color: rgb(0,0,0)"> m) {
    </span><span style="color: rgb(0,0,255)">this</span>.m =<span style="color: rgb(0,0,0)"> m;
}</span></pre>

2、TreeSet主要方法
一、add:將指定的元素添加到此 set(若是該元素還沒有存在於 set 中)。接口

public boolean add(E e) {
        return m.put(e, PRESENT)==null;
    }

二、addAll:將指定 collection 中的全部元素添加到此 set 中。rem

public  boolean addAll(Collection<? extends E> c) {
        // Use linear-time version if applicable
        if (m.size()==0 && c.size() > 0 &&
            c instanceof SortedSet &&
            m instanceof TreeMap) {
            SortedSet<? extends E> set = (SortedSet<? extends E>) c;
            TreeMap<E,Object> map = (TreeMap<E, Object>) m;
            Comparator<? super E> cc = (Comparator<? super E>) set.comparator();
            Comparator<? super E> mc = map.comparator();
            if (cc==mc || (cc != null && cc.equals(mc))) {
                map.addAllForTreeSet(set, PRESENT);
                return true;
            }
        }
        return super.addAll(c);
    }

三、ceiling:返回此 set 中大於等於給定元素的最小元素;若是不存在這樣的元素,則返回 null。get

public E ceiling(E e) {
        return m.ceilingKey(e);
    }

四、clear:移除此 set 中的全部元素。源碼

public void clear() {
        m.clear();
    }

五、clone:返回 TreeSet 實例的淺表副本。屬於淺拷貝。

public Object clone() {
        TreeSet<E> clone = null;
        try {
            clone = (TreeSet<E>) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new InternalError();
        }
    clone.m </span>= <span style="color: rgb(0,0,255)">new</span> TreeMap&lt;&gt;<span style="color: rgb(0,0,0)">(m);
    </span><span style="color: rgb(0,0,255)">return</span><span style="color: rgb(0,0,0)"> clone;
}</span></pre>

六、comparator:返回對此 set 中的元素進行排序的比較器;若是此 set 使用其元素的天然順序,則返回 null。

public Comparator<? super E> comparator() {
        return m.comparator();
    }

七、contains:若是此 set 包含指定的元素,則返回 true。

public boolean contains(Object o) {
        return m.containsKey(o);
    }

八、descendingIterator:返回在此 set 元素上按降序進行迭代的迭代器。

public Iterator<E> descendingIterator() {
        return m.descendingKeySet().iterator();
    }

九、descendingSet:返回此 set 中所包含元素的逆序視圖。

public NavigableSet<E> descendingSet() {
        return new TreeSet<>(m.descendingMap());
    }

十、first:返回此 set 中當前第一個(最低)元素。

public E first() {
        return m.firstKey();
    }

十一、floor:返回此 set 中小於等於給定元素的最大元素;若是不存在這樣的元素,則返回 null。

public E floor(E e) {
        return m.floorKey(e);
    }

十二、headSet:返回此 set 的部分視圖,其元素嚴格小於 toElement。

public SortedSet<E> headSet(E toElement) {
        return headSet(toElement, false);
    }

1三、higher:返回此 set 中嚴格大於給定元素的最小元素;若是不存在這樣的元素,則返回 null。

public E higher(E e) {
        return m.higherKey(e);
    }

1四、isEmpty:若是此 set 不包含任何元素,則返回 true。

public boolean isEmpty() {
        return m.isEmpty();
    }

1五、iterator:返回在此 set 中的元素上按升序進行迭代的迭代器。

public Iterator<E> iterator() {
        return m.navigableKeySet().iterator();
    }

1六、last:返回此 set 中當前最後一個(最高)元素。

public E last() {
        return m.lastKey();
    }

1七、lower:返回此 set 中嚴格小於給定元素的最大元素;若是不存在這樣的元素,則返回 null。

public E lower(E e) {
        return m.lowerKey(e);
    }

1八、pollFirst:獲取並移除第一個(最低)元素;若是此 set 爲空,則返回 null。

public E pollFirst() {
        Map.Entry<E,?> e = m.pollFirstEntry();
        return (e == null) ? null : e.getKey();
    }

1九、pollLast:獲取並移除最後一個(最高)元素;若是此 set 爲空,則返回 null。

public E pollLast() {
        Map.Entry<E,?> e = m.pollLastEntry();
        return (e == null) ? null : e.getKey();
    }

20、remove:將指定的元素從 set 中移除(若是該元素存在於此 set 中)。

public boolean remove(Object o) {
        return m.remove(o)==PRESENT;
    }

2一、size:返回 set 中的元素數(set 的容量)。

public int size() {
        return m.size();
    }

2二、subSet:返回此 set 的部分視圖

/**
     * 返回此 set 的部分視圖,其元素範圍從 fromElement 到 toElement。
     */
     public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
             E toElement,   boolean toInclusive) {
             return new TreeSet<>(m.subMap(fromElement, fromInclusive,
                  toElement,   toInclusive));
     }
 </span><span style="color: rgb(0,128,0)">/**</span><span style="color: rgb(0,128,0)">
  * 返回此 set 的部分視圖,其元素從 fromElement(包括)到 toElement(不包括)。
  </span><span style="color: rgb(0,128,0)">*/</span>
 <span style="color: rgb(0,0,255)">public</span> SortedSet&lt;E&gt;<span style="color: rgb(0,0,0)"> subSet(E fromElement, E toElement) {
     </span><span style="color: rgb(0,0,255)">return</span> subSet(fromElement, <span style="color: rgb(0,0,255)">true</span>, toElement, <span style="color: rgb(0,0,255)">false</span><span style="color: rgb(0,0,0)">);
 }</span></pre>

2三、tailSet:返回此 set 的部分視圖

/**
     * 返回此 set 的部分視圖,其元素大於(或等於,若是 inclusive 爲 true)fromElement。
     */
    public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
        return new TreeSet<>(m.tailMap(fromElement, inclusive));
    }
</span><span style="color: rgb(0,128,0)">/**</span><span style="color: rgb(0,128,0)">
 * 返回此 set 的部分視圖,其元素大於等於 fromElement。
 </span><span style="color: rgb(0,128,0)">*/</span>
<span style="color: rgb(0,0,255)">public</span> SortedSet&lt;E&gt;<span style="color: rgb(0,0,0)"> tailSet(E fromElement) {
    </span><span style="color: rgb(0,0,255)">return</span> tailSet(fromElement, <span style="color: rgb(0,0,255)">true</span><span style="color: rgb(0,0,0)">);
}</span></pre>

3、最後因爲TreeSet是基於TreeMap實現的,因此若是咱們對treeMap有了必定的瞭解,對TreeSet那是小菜一碟,咱們從TreeSet中的源碼能夠看出,其實現過程很是簡單,幾乎全部的方法實現所有都是基於TreeMap的。

相關文章
相關標籤/搜索