您好,登錄后才能下訂單哦!
這篇文章主要講解了“JDK的TreeMap怎么實現”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“JDK的TreeMap怎么實現”吧!
TreeMap的實現也是利用的紅黑樹,我們來看代碼:
在TreeMap中包含著一個根結點:
private transient Entry<K,V> root = null;
這個Entry代碼如下:
static final class Entry<K,V> implements Map.Entry<K,V> {
K key;
V value;
//指向小兒子
Entry<K,V> left = null;
//指向大兒子
Entry<K,V> right = null;
//指向父親
Entry<K,V> parent;
//顏色默認為黑色
boolean color = BLACK;
Entry(K key, V value, Entry<K,V> parent) {
this.key = key;
this.value = value;
this.parent = parent;
}
public K getKey() {
return key;
}
public V getValue() {
return value;
}
public V setValue(V value) {
V oldValue = this.value;
this.value = value;
return oldValue;
}
public boolean equals(Object o) {
if (!(o instanceof Map.Entry))
return false;
Map.Entry<?,?> e = (Map.Entry<?,?>)o;
return valEquals(key,e.getKey()) && valEquals(value,e.getValue());
}
public int hashCode() {
int keyHash = (key==null ? 0 : key.hashCode());
int valueHash = (value==null ? 0 : value.hashCode());
return keyHash ^ valueHash;
}
public String toString() {
return key + "=" + value;
}
}
廢話不多說,我們來看一下他的插入實現:
public V put(K key, V value) {
Entry<K,V> t = root;
//如果樹是空樹
if (t == null) {
//那么樹根節點就是節點
root = new Entry<K,V>(key, value, null);
size = 1;
modCount++;
return null;
}
int cmp;
Entry<K,V> parent;
//否則利用提供的比較器進行比較
Comparator<? super K> cpr = comparator;
if (cpr != null) {
do {
parent = t;
cmp = cpr.compare(key, t.key);
//如果比當前節點小,
if (cmp < 0)
//往小兒子遞歸
t = t.left;
else if (cmp > 0)
//往大兒子遞歸
t = t.right;
else
//如果已經有這個key,那么修改key,并且什么都可以 不修改了
return t.setValue(value);
} while (t != null); //知道找到葉子節點;
}
else {
if (key == null)
throw new NullPointerException();
//如果沒有提供外部的比較器,那么就利用內置的比較器
Comparable<? super K> k = (Comparable<? super K>) key;
do {
parent = t;
cmp = k.compareTo(t.key);
if (cmp < 0)
t = t.left;
else if (cmp > 0)
t = t.right;
else
return t.setValue(value);
} while (t != null);
}
//生成一個葉子節點,準備進行加入
Entry<K,V> e = new Entry<K,V>(key, value, parent);
//利用最后的判斷,將這個節點變成該葉子節點的兒子;
if (cmp < 0)
parent.left = e;
else
parent.right = e;
//由于有可能破壞了紅黑樹的規則,現在進行調整;
fixAfterInsertion(e);
size++;
modCount++;
return null;
}
private void fixAfterInsertion(Entry<K,V> x) {
//首先將該新增節點染紅,葉子節點(null)是黑色的;
x.color = RED;
//如果他的父親是紅色的,那么沖突開始;
while (x != null && x != root && x.parent.color == RED) {
//如果是左子數;
if (parentOf(x) == leftOf(parentOf(parentOf(x)))) {
Entry<K,V> y = rightOf(parentOf(parentOf(x)));
//如果其兄弟是紅色的,那么根據上一節的分析,將兩兄弟都變成黑色,其父節點變紅,這樣黑色節點的數目沒有發生變化,而我們距離跟更近一步;
if (colorOf(y) == RED) {
setColor(parentOf(x), BLACK);
setColor(y, BLACK);
setColor(parentOf(parentOf(x)), RED);
x = parentOf(parentOf(x));
} else {
//兄弟為黑色
if (x == rightOf(parentOf(x))) {
x = parentOf(x);
rotateLeft(x);
}
setColor(parentOf(x), BLACK);
setColor(parentOf(parentOf(x)), RED);
rotateRight(parentOf(parentOf(x)));
}
//如果是右子數,正好與上面相反;
} else {
Entry<K,V> y = leftOf(parentOf(parentOf(x)));
if (colorOf(y) == RED) {
setColor(parentOf(x), BLACK);
setColor(y, BLACK);
setColor(parentOf(parentOf(x)), RED);
x = parentOf(parentOf(x));
} else {
if (x == leftOf(parentOf(x))) {
x = parentOf(x);
rotateRight(x);
}
setColor(parentOf(x), BLACK);
setColor(parentOf(parentOf(x)), RED);
rotateLeft(parentOf(parentOf(x)));
}
}
}
//沖突會一直追溯到跟,把跟染黑,不違背根節點是黑色的特性,并且使得所有的樹枝的黑色節點因此加1,沖突解決;
root.color = BLACK;
}
看完了增加,我們再來看看刪除
public V remove(Object key) {
//查找到該節點
Entry<K,V> p = getEntry(key);
//不存在則結束
if (p == null)
return null;
V oldValue = p.value;
//刪除
deleteEntry(p);
//返回原值
return oldValue;
}
查找該節點:
final Entry<K,V> getEntry(Object key) {
if (comparator != null)
//利用外部比較器
return getEntryUsingComparator(key);
if (key == null)
throw new NullPointerException();
//內置比較器
Comparable<? super K> k = (Comparable<? super K>) key;
Entry<K,V> p = root;
while (p != null) {
int cmp = k.compareTo(p.key);
if (cmp < 0)
p = p.left;
else if (cmp > 0)
p = p.right;
else
return p;
}
return null;
}
外部比較器查找節點:
final Entry<K,V> getEntryUsingComparator(Object key) {
K k = (K) key;
Comparator<? super K> cpr = comparator;
if (cpr != null) {
Entry<K,V> p = root;
while (p != null) {
int cmp = cpr.compare(k, p.key);
if (cmp < 0)
p = p.left;
else if (cmp > 0)
p = p.right;
else
return p;
}
}
return null;
}
刪除操作:
private void deleteEntry(Entry<K,V> p) {
modCount++;
size--;
//如果刪除的節點有兩個子節點;
if (p.left != null && p.right != null) {
Entry<K,V> s = successor (p);
p.key = s.key;
p.value = s.value;
p = s;
}
//兩個子節點的刪除轉化為了一個子節點的刪除
//進行一個子節點的刪除操作;
Entry<K,V> replacement = (p.left != null ? p.left : p.right);
//如果有一個以上的節點;重新接上樹枝;
if (replacement != null) {
replacement.parent = p.parent;
if (p.parent == null)
root = replacement;
else if (p == p.parent.left)
p.parent.left = replacement;
else
p.parent.right = replacement;
p.left = p.right = p.parent = null;
//如果刪除位置的新節點是黑色的,那么會少一個黑節點,調整
if (p.color == BLACK)
//調整新的節點,即刪除節點的子節點;
fixAfterDeletion(replacement);
} else if (p.parent == null) { // return if we are the only node.
root = null;
} else {
//如果沒有子節點
//紅色的節點要可以直接刪除,黑色的話,必須要經過調整;
if (p.color == BLACK)
fixAfterDeletion(p);
//刪除操作;
if (p.parent != null) {
if (p == p.parent.left)
p.parent.left = null;
else if (p == p.parent.right)
p.parent.right = null;
p.parent = null;
}
}
}
刪除后的調整:
private void fixAfterDeletion(Entry<K,V> x) {
// 如果節點是黑色的;那么要經過調整,如果是紅色的,可以直接修改成為黑色的,結束循環;
while (x != root && colorOf(x) == BLACK)
// 判斷被刪除節點是左子樹;
if (x == leftOf(parentOf(x))) {
// 獲得兄弟節點;
Entry<K,V> sib = rightOf(parentOf(x));
//兄弟節點是紅色的
if (colorOf(sib) == RED) {
setColor(sib, BLACK);
setColor(parentOf(x), RED);
//開始旋轉
rotateLeft(parentOf(x));
// 得到旋轉后的新的兄弟節點;這個時候是黑色的
sib = rightOf(parentOf(x));
}
//判斷侄子的顏色;如果兩個都是黑色的
if (colorOf(leftOf(sib)) == BLACK &&
colorOf(rightOf(sib)) == BLACK) {
setColor(sib, RED);
x = parentOf(x);
} else {
// 只有一個是黑色的
// 如果是黑色的那個侄子位置不對,那么經過一次轉換;
if (colorOf(rightOf(sib)) == BLACK) {
setColor(leftOf(sib), BLACK);
setColor(sib, RED);
rotateRight(sib);
sib = rightOf(parentOf(x));
}
setColor(sib, colorOf(parentOf(x)));
setColor(parentOf(x), BLACK);
setColor(rightOf(sib), BLACK);
rotateLeft(parentOf(x));
x = root;
}
} else {
Entry<K,V> sib = leftOf(parentOf(x));
if (colorOf(sib) == RED) {
setColor(sib, BLACK);
setColor(parentOf(x), RED);
rotateRight(parentOf(x));
sib = leftOf(parentOf(x));
}
if (colorOf(rightOf(sib)) == BLACK &&
colorOf(leftOf(sib)) == BLACK) {
setColor(sib, RED);
x = parentOf(x);
} else {
if (colorOf(leftOf(sib)) == BLACK) {
setColor(rightOf(sib), BLACK);
setColor(sib, RED);
rotateLeft(sib);
sib = leftOf(parentOf(x));
}
setColor(sib, colorOf(parentOf(x)));
setColor(parentOf(x), BLACK);
setColor(leftOf(sib), BLACK);
rotateRight(parentOf(x));
x = root;
}
}
}
//如果該節點不是黑色的,或者是根節點,那么把他染黑;
setColor(x, BLACK);
}
static <K,V> TreeMap.Entry<K,V> successor(Entry<K,V> t) {
//如果為null,則返回
if (t == null)
return null;
//如果大兒子存在,那么沿著這條路下去,找到其這個枝條中最小的節點
else if (t.right != null) {
Entry<K,V> p = t.right;
while (p.left != null)
p = p.left;
return p;
} else {
//如果右邊子樹是空的,那么找到其長輩節點中間第一個大于他的
Entry<K,V> p = t.parent;
Entry<K,V> ch = t;
while (p != null && ch == p.right) {
ch = p;
p = p.parent;
}
return p;
}
}
我們再來看一下我們在獲取其集合的時候的順序:
static final class KeySet<E> extends AbstractSet<E> implements NavigableSet<E> {
private final NavigableMap<E, Object> m;
KeySet(NavigableMap<E,Object> map) { m = map; }
public Iterator<E> iterator() {
if (m instanceof TreeMap)
return ((TreeMap<E,Object>)m).keyIterator();
else
return (Iterator<E>)(((TreeMap.NavigableSubMap)m).keyIterator());
}
public Iterator<E> descendingIterator() {
if (m instanceof TreeMap)
return ((TreeMap<E,Object>)m).descendingKeyIterator();
else
return (Iterator<E>)(((TreeMap.NavigableSubMap)m).descendingKeyIterator());
}
public int size() { return m.size(); }
public boolean isEmpty() { return m.isEmpty(); }
public boolean contains(Object o) { return m.containsKey(o); }
public void clear() { m.clear(); }
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 first() { return m.firstKey(); }
public E last() { return m.lastKey(); }
public Comparator<? super E> comparator() { return m.comparator(); }
public E pollFirst() {
Map.Entry<E,Object> e = m.pollFirstEntry();
return e == null? null : e.getKey();
}
public E pollLast() {
Map.Entry<E,Object> e = m.pollLastEntry();
return e == null? null : e.getKey();
}
public boolean remove(Object o) {
int oldSize = size();
m.remove(o);
return size() != oldSize;
}
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
E toElement, boolean toInclusive) {
return new TreeSet<E>(m.subMap(fromElement, fromInclusive,
toElement, toInclusive));
}
public NavigableSet<E> headSet(E toElement, boolean inclusive) {
return new TreeSet<E>(m.headMap(toElement, inclusive));
}
public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
return new TreeSet<E>(m.tailMap(fromElement, inclusive));
}
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 NavigableSet<E> descendingSet() {
return new TreeSet(m.descendingMap());
}
}
這個是返回的set,他的查找排序是利用的迭代模式委托給了迭代器,我們看看他的迭代器實現:
final class KeyIterator extends PrivateEntryIterator<K> {
KeyIterator(Entry<K,V> first) {
super(first);
}
public K next() {
return nextEntry().key;
}
}
其中獲取下一個nextEntry是:
final Entry<K,V> nextEntry() {
Entry<K,V> e = next;
if (e == null)
throw new NoSuchElementException();
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
next = successor(e);
lastReturned = e;
return e;
}
利用的successvor(),在開始的分析中我們知道,successor的查找,是通過了樹的中序遍歷的
感謝各位的閱讀,以上就是“JDK的TreeMap怎么實現”的內容了,經過本文的學習后,相信大家對JDK的TreeMap怎么實現這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。