91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TreeSet的介紹和使用

發布時間:2021-06-22 15:49:34 來源:億速云 閱讀:143 作者:chen 欄目:大數據

這篇文章主要介紹“TreeSet的介紹和使用”,在日常操作中,相信很多人在TreeSet的介紹和使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”TreeSet的介紹和使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

TreeSet簡介
public class MyTreeSet<E> 
    extends AbstractSet<E> 
    implements NavigableSet<E>, Cloneable, Serializable {
}

TreeSet繼承了AbstractSet抽象類且實現了NavigableSet接口,是一個有序的集合,基于TreeMap實現,支持自然排序或者提供的Comparator進行排序。

NavigableSet簡介
public interface NavigableSet<E> extends SortedSet<E> {
    /** 返回小于給定元素e的最大元素,如果沒有則返回NULL。 **/
    E lower(E e);

    /** 返回小于或等于給定元素e的最大元素,如果沒有則返回NULL。 **/
    E floor(E e);

    /** 返回大于或等于給定元素e的最小元素,如果沒有則返回NULL。 **/
    E ceiling(E e);

    /** 返回大于給定元素e的最小元素,如果沒有則返回NULL。 **/
    E higher(E e);

    /** 檢索并刪除第一個最小元素,如果沒有則返回NULL。 **/
    E pollFirst();

    /** 檢索并刪除第后一個最大元素,如果沒有則返回NULL。 **/
    E pollLast();

    /** 返回fromElement和toElement之間的元素 可設置是否包含fromElement和toElement **/
    NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
                           E toElement,   boolean toInclusive);

    /** 返回toElement之前的元素 可設置是否包含toElement元素 **/
    NavigableSet<E> headSet(E toElement, boolean inclusive);

    /** 返回fromElement之后的元素 可設置包含fromElement元素 **/
    NavigableSet<E> tailSet(E fromElement, boolean inclusive);

    /** 返回fromElement和toElement之間的元素 包含fromElement但不包含toElement **/
    SortedSet<E> subSet(E fromElement, E toElement);

    /** 返回toElement之前的元素 不包含toElement元素 **/
    SortedSet<E> headSet(E toElement);

    /** 返回fromElement之后的元素 包含fromElement元素 **/
    SortedSet<E> tailSet(E fromElement);
}

NavigableSet接口繼承了SortedSet接口,最后三個接口繼承自SortedSet

SortedSet簡介
public interface SortedSet<E> extends Set<E> {

    /** 返回當前集合元素排序的比較器 **/
    Comparator<? super E> comparator();

    /** 返回fromElement和toElement之間的元素 包含fromElement但不包含toElement **/
    SortedSet<E> subSet(E fromElement, E toElement);

    /** 返回toElement之前的元素 不包含toElement元素 **/
    SortedSet<E> headSet(E toElement);

    /** 返回fromElement之后的元素 包含fromElement元素 **/
    SortedSet<E> tailSet(E fromElement);

    /** 返回第一個元素 **/
    E first();

    /** 返回最后一個元素 **/
    E last();
}
TreeSet成員變量
/** 具體存儲元素的NavigableMap **/
private transient NavigableMap<E,Object> m;

private static final Object PRESENT = new Object();
TreeSet構造函數
MyTreeSet(NavigableMap<E,Object> m) {
    this.m = m;
}

/** 默認構造函數  基于TreeMap實現 **/
public MyTreeSet() {
    this(new TreeMap<>());
}

/** 提供排序方法的構造函數 **/
public MyTreeSet(Comparator<? super E> comparator) {
    this(new TreeMap<>(comparator));
}

/** 根據給定集合構造函數 **/
public MyTreeSet(Collection<? extends E> c) {
    this();
    addAll(c);
}

/** 根據給定排序的集合構造函數 **/
public MyTreeSet(SortedSet<E> s) {
    this(s.comparator());
    addAll(s);
}
元素添加
/** 添加單個元素 **/
public boolean add(E e) {
    return m.put(e, PRESENT)==null;
}

/** 添加集合元素 **/
public boolean addAll(Collection<? extends E> c) {
    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<?> cc = 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);
}
元素移除
/** 移除單個元素 **/
public boolean remove(Object o) {
    return m.remove(o)==PRESENT;
}

/** 移除當前集合所有元素 **/
public void clear() {
    m.clear();
}
元素查找
/** 是否包含元素 **/
public boolean contains(Object o) {
    return m.containsKey(o);
}

/** 返回集合的長度 **/
public int size() {
    return m.size();
}

/** 返回集合是否為空 **/
public boolean isEmpty() {
    return m.isEmpty();
}
基于SortedSet的元素查找
public Comparator<? super E> comparator() {
    return m.comparator();
}

public SortedSet<E> subSet(E fromElement, E toElement) {
    return subSet(fromElement, true, toElement, false);
}

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

public SortedSet<E> tailSet(E fromElement) {
    return tailSet(fromElement, true);
}

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

public E last() {
    return m.lastKey();
}
基于NavigableSet的元素查找
 public E lower(E e) {
    return m.lowerKey(e);
}

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

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

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

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

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

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

public NavigableSet<E> descendingSet() {
    return m.descendingKeySet();
}

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

public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
    return new TreeSet<>(m.subMap(fromElement, fromInclusive, toElement, toInclusive));
}

public NavigableSet<E> headSet(E toElement, boolean inclusive) {
    return new TreeSet<>(m.headMap(toElement, inclusive));
}
    
public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
    return new TreeSet<>(m.tailMap(fromElement, inclusive));
}

到此,關于“TreeSet的介紹和使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

周至县| 巴彦淖尔市| 池州市| 丘北县| 临武县| 晋宁县| 陇西县| 巴中市| 望城县| 泰顺县| 闽清县| 顺平县| 金昌市| 遵义市| 濮阳县| 依安县| 精河县| 陆丰市| 手机| 万安县| 唐海县| 丰原市| 河南省| 长白| 青浦区| 龙州县| 渭源县| 南投市| 怀来县| 乐东| 中卫市| 松江区| 白城市| 重庆市| 泸西县| 昂仁县| 洪雅县| 新化县| 汤原县| 大同县| 普兰县|