摘要:在上一節中,在中用了鏈表和紅黑樹兩種方式解決沖突,在中也是用紅黑樹存儲的。其中節點顏色為黑色紅黑樹的左旋和右旋紅黑樹的插入和刪除,都有可能破壞其特性,就不是一棵紅黑樹了,所以要調整。
在上一節中,HashMap在jdk 1.8中用了鏈表和紅黑樹兩種方式解決沖突,在TreeMap中也是用紅黑樹存儲的。下面分析一下紅黑樹的結構和基本操作。一、紅黑樹的特征和基本操作
上一節中已經描述了紅黑樹的基本概念和特征,下面直接通過一個例子分析紅黑樹的構造和調整方法。1、紅黑樹的數據結構
紅黑樹是一棵二叉查找樹,在二叉樹的基礎上增加了節點的顏色,下面是TreeMap中的紅黑樹定義:
private static final boolean RED = false; private static final boolean BLACK = true; static final class Entry2、紅黑樹的左旋和右旋implements Map.Entry { K key; V value; Entry left; Entry right; Entry parent; boolean color = BLACK; /** * 給定key、value和父節點,構造一個新的。其中節點顏色為黑色 */ Entry(K key, V value, Entry parent) { this.key = key; this.value = value; this.parent = parent; } }
紅黑樹的插入和刪除,都有可能破壞其特性,就不是一棵紅黑樹了,所以要調整。調整的方法又兩種,一種是改變某個節點的顏色,另外一種是結構調整,包括左旋和右旋。 左旋:將X的節點的右兒子節點Y變為其父節點,并且將Y的左子樹變為X的右子樹,變換過程入下圖
右旋:將X的節點的左兒子節點Y變為其父節點,并且將Y的右子樹變為X的左子樹,變換過程入下圖3、插入節點后調整紅黑樹
當在紅黑樹中插入一個節點后,可能會破壞紅黑樹的規則,首先再回顧一下紅黑數的特點:
節點是紅色或黑色。
根節點是黑色。
每個葉子節點都是黑色的空節點(NIL節點)。
每個紅色節點的兩個子節點都是黑色。(從每個葉子到根的所有路徑上不能有兩個連續的紅色節點)
從任一節點到其每個葉子的所有路徑都包含相同數目的黑色節點。
從上面的條件可以看出,a肯定是不會違背的。插入的節點不在根節點處,所以b也不會違背。插入的節點時非空節點,c也不會違背。最有可能違背的就是d和e。而在我們插入節點時,先將要插入的節點顏色設置為紅色,這樣也就不會違背e。所以,插入后只需要調整不違背e就可以。
插入后調整需要分三種情況來處理:
插入的是根節點:
處理方法是直接將根節點顏色設置為黑色
插入節點的父節點為黑色節點或父節點為根節點
不需要處理
插入節點的父節點時紅色節點
這種又分為三種情況
下面假設插入節點為x,父節點為xp,祖父節點為xpp,祖父節點的左兒子為xppl,祖父節點的右兒子為xppr
S1:當前節點的父節點xp是紅色,且當前節點的祖父節xpp點的另一個子節點(xppl或者xppr)也是紅色
處理邏輯:將父節點xp設為紅色,祖父節點的兒子節點(xppl或者xppr)設為黑色,將祖父節點xpp設為紅色,將祖父節點xpp設為當前節點,繼續處理。
S2:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點x是其父節點xp的右孩子
處理邏輯:父節點xp作為當前節點x, 以當前節點x為支點進行左旋。
S3:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點是其父節點xp的左孩子
處理邏輯:將父節點xp設置為黑色,祖父節點xpp設置為紅色,以祖父節點xpp為支點進行右旋
4、刪除節點后調整紅黑樹未完,待續。。。
3、構造一棵紅黑樹通過插入節點,構造紅黑樹
現在給定節點8 5 3 9 12 1 4 2,依次插入紅黑樹中,具體流程見下圖:
在紅黑樹中刪除節點
未完,待續。。。
二、HashMap中的紅黑樹相關源碼static final class TreeNode三、總結extends LinkedHashMap.Entry { TreeNode parent; // red-black tree links TreeNode left; TreeNode right; //在節點刪除后,需解除鏈接 TreeNode prev; boolean red; TreeNode(int hash, K key, V val, Node next) { super(hash, key, val, next); } /** * 返回根節點 */ final TreeNode root() { for (TreeNode r = this, p;;) { if ((p = r.parent) == null) return r; r = p; } } /** * 確保根節點就是第一個節點 */ static void moveRootToFront(Node [] tab, TreeNode root) { int n; if (root != null && tab != null && (n = tab.length) > 0) { int index = (n - 1) & root.hash; TreeNode first = (TreeNode )tab[index]; //如果根節點不是第一個節點,進行調整 if (root != first) { Node rn; tab[index] = root; TreeNode rp = root.prev; if ((rn = root.next) != null) ((TreeNode )rn).prev = rp; if (rp != null) rp.next = rn; if (first != null) first.prev = root; root.next = first; root.prev = null; } assert checkInvariants(root); } } /** * 根據hash值和key查詢節點 */ final TreeNode find(int h, Object k, Class> kc) { TreeNode p = this; do { int ph, dir; K pk; TreeNode pl = p.left, pr = p.right, q; if ((ph = p.hash) > h) p = pl; else if (ph < h) p = pr; else if ((pk = p.key) == k || (k != null && k.equals(pk))) return p; else if (pl == null) p = pr; else if (pr == null) p = pl; else if ((kc != null || (kc = comparableClassFor(k)) != null) && (dir = compareComparables(kc, k, pk)) != 0) p = (dir < 0) ? pl : pr; else if ((q = pr.find(h, k, kc)) != null) return q; else p = pl; } while (p != null); return null; } /** * 根據hash值和key查詢節點 */ final TreeNode getTreeNode(int h, Object k) { return ((parent != null) ? root() : this).find(h, k, null); } /** * 將鏈表轉換為紅黑樹 */ final void treeify(Node [] tab) { TreeNode root = null; //從第一個節點開始 for (TreeNode x = this, next; x != null; x = next) { next = (TreeNode )x.next; x.left = x.right = null; //如果root節點為null,x為根節點,此節點為黑色,父節點為null if (root == null) { x.parent = null; x.red = false; root = x; } else { //x的key值 K k = x.key; //x的hash值 int h = x.hash; Class> kc = null; for (TreeNode p = root;;) { int dir, ph; K pk = p.key; //左邊 if ((ph = p.hash) > h) dir = -1; //右邊 else if (ph < h) dir = 1; //通過仲裁方法判斷 else if ((kc == null && (kc = comparableClassFor(k)) == null) || (dir = compareComparables(kc, k, pk)) == 0) dir = tieBreakOrder(k, pk); TreeNode xp = p; //dir <=0 左子樹搜索,并且判斷左兒子是否為空,表示是否到葉子節點 if ((p = (dir <= 0) ? p.left : p.right) == null) { x.parent = xp; if (dir <= 0) xp.left = x; else xp.right = x; //插入元素,判斷是否平衡,并且調整 root = balanceInsertion(root, x); break; } } } } //確保根節點就是第一個節點 moveRootToFront(tab, root); } /** * 紅黑樹轉換為鏈表 */ final Node untreeify(HashMap map) { Node hd = null, tl = null; for (Node q = this; q != null; q = q.next) { Node p = map.replacementNode(q, null); if (tl == null) hd = p; else tl.next = p; tl = p; } return hd; } /** * 插入一個節點 */ final TreeNode putTreeVal(HashMap map, Node [] tab, int h, K k, V v) { Class> kc = null; boolean searched = false; TreeNode root = (parent != null) ? root() : this; //從根據點開始,和當前搜索節點的hash比較 for (TreeNode p = root;;) { int dir, ph; K pk; if ((ph = p.hash) > h) dir = -1; else if (ph < h) dir = 1; //hash和key都一致 else if ((pk = p.key) == k || (k != null && k.equals(pk))) return p; else if ((kc == null && (kc = comparableClassFor(k)) == null) || (dir = compareComparables(kc, k, pk)) == 0) { if (!searched) { TreeNode q, ch; searched = true; if (((ch = p.left) != null && (q = ch.find(h, k, kc)) != null) || ((ch = p.right) != null && (q = ch.find(h, k, kc)) != null)) return q; } dir = tieBreakOrder(k, pk); } TreeNode xp = p; if ((p = (dir <= 0) ? p.left : p.right) == null) { Node xpn = xp.next; //新建節點 TreeNode x = map.newTreeNode(h, k, v, xpn); if (dir <= 0) xp.left = x; else xp.right = x; xp.next = x; x.parent = x.prev = xp; if (xpn != null) ((TreeNode )xpn).prev = x; //插入元素,判斷是否平衡,并且調整。確保根節點就是第一個節點 moveRootToFront(tab, balanceInsertion(root, x)); return null; } } } /** * Removes the given node, that must be present before this call. * This is messier than typical red-black deletion code because we * cannot swap the contents of an interior node with a leaf * successor that is pinned by "next" pointers that are accessible * independently during traversal. So instead we swap the tree * linkages. If the current tree appears to have too few nodes, * the bin is converted back to a plain bin. (The test triggers * somewhere between 2 and 6 nodes, depending on tree structure). */ final void removeTreeNode(HashMap map, Node [] tab, boolean movable) { int n; if (tab == null || (n = tab.length) == 0) return; int index = (n - 1) & hash; TreeNode first = (TreeNode )tab[index], root = first, rl; TreeNode succ = (TreeNode )next, pred = prev; if (pred == null) tab[index] = first = succ; else pred.next = succ; if (succ != null) succ.prev = pred; if (first == null) return; if (root.parent != null) root = root.root(); if (root == null || root.right == null || (rl = root.left) == null || rl.left == null) { tab[index] = first.untreeify(map); // too small return; } TreeNode p = this, pl = left, pr = right, replacement; if (pl != null && pr != null) { TreeNode s = pr, sl; while ((sl = s.left) != null) // find successor s = sl; boolean c = s.red; s.red = p.red; p.red = c; // swap colors TreeNode sr = s.right; TreeNode pp = p.parent; if (s == pr) { // p was s"s direct parent p.parent = s; s.right = p; } else { TreeNode sp = s.parent; if ((p.parent = sp) != null) { if (s == sp.left) sp.left = p; else sp.right = p; } if ((s.right = pr) != null) pr.parent = s; } p.left = null; if ((p.right = sr) != null) sr.parent = p; if ((s.left = pl) != null) pl.parent = s; if ((s.parent = pp) == null) root = s; else if (p == pp.left) pp.left = s; else pp.right = s; if (sr != null) replacement = sr; else replacement = p; } else if (pl != null) replacement = pl; else if (pr != null) replacement = pr; else replacement = p; if (replacement != p) { TreeNode pp = replacement.parent = p.parent; if (pp == null) root = replacement; else if (p == pp.left) pp.left = replacement; else pp.right = replacement; p.left = p.right = p.parent = null; } TreeNode r = p.red ? root : balanceDeletion(root, replacement); if (replacement == p) { // detach TreeNode pp = p.parent; p.parent = null; if (pp != null) { if (p == pp.left) pp.left = null; else if (p == pp.right) pp.right = null; } } if (movable) moveRootToFront(tab, r); } /* ------------------------------------------------------------ */ // Red-black tree methods, all adapted from CLR //左旋 static TreeNode rotateLeft(TreeNode root, TreeNode p) { TreeNode r, pp, rl; //以p為左旋支點,且p不為空,右兒子不為空 if (p != null && (r = p.right) != null) { //將p的右兒子r的左兒子rl變為p的右兒子 if ((rl = p.right = r.left) != null) rl.parent = p; //處理p、l和p父節點的關系 if ((pp = r.parent = p.parent) == null) (root = r).red = false; else if (pp.left == p) pp.left = r; else pp.right = r; //處理p和r的關系 r.left = p; p.parent = r; } return root; } //右旋 static TreeNode rotateRight(TreeNode root, TreeNode p) { TreeNode l, pp, lr; //p:右旋支點,不為空,p的左兒子l不為空 if (p != null && (l = p.left) != null) { //將左兒子的右子樹變為p的左子樹 if ((lr = p.left = l.right) != null) lr.parent = p; //p的父節點變為l的父節點 if ((pp = l.parent = p.parent) == null) (root = l).red = false; //如果p為右兒子,則p的父節點的右兒子變為l,否則左兒子變為l else if (pp.right == p) pp.right = l; else pp.left = l; //p變為l的右兒子 l.right = p; p.parent = l; } return root; } static TreeNode balanceInsertion(TreeNode root, TreeNode x) { //插入節點初始化為紅色 x.red = true; //xp:父節點,xpp:祖父節點, xppl:祖父節點的左兒子,xppr:祖父節點的右兒子 //循環遍歷 for (TreeNode xp, xpp, xppl, xppr;;) { //插入的節點為根節點,節點顏色轉換為黑色 if ((xp = x.parent) == null) { x.red = false; return x; } //當前節點的父為黑色節點或者父節點為根節點,直接返回 else if (!xp.red || (xpp = xp.parent) == null) return root; //祖父節點的左兒子是父節點 if (xp == (xppl = xpp.left)) { //S1:當前節點的父節點xp是紅色,且當前節點的祖父節xpp點的另一個子節點(xppl或者xppr)也是紅色 if ((xppr = xpp.right) != null && xppr.red) { xppr.red = false; xp.red = false; xpp.red = true; x = xpp; } else { //S2:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點x是其父節點xp的右孩子 if (x == xp.right) { root = rotateLeft(root, x = xp); xpp = (xp = x.parent) == null ? null : xp.parent; } //S3:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點是其父節點xp的左孩子 if (xp != null) { xp.red = false; if (xpp != null) { xpp.red = true; root = rotateRight(root, xpp); } } } } else { //S1:當前節點的父節點xp是紅色,且當前節點的祖父節xpp點的另一個子節點(xppl或者xppr)也是紅色 if (xppl != null && xppl.red) { xppl.red = false; xp.red = false; xpp.red = true; x = xpp; } else { //S2:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點x是其父節點xp的右孩子 if (x == xp.left) { root = rotateRight(root, x = xp); xpp = (xp = x.parent) == null ? null : xp.parent; } //S3:當前節點的父節點xp是紅色,祖父節點的兒子節點(xppl或者xppr)是黑色,且當前節點是其父節點xp的左孩子 if (xp != null) { xp.red = false; if (xpp != null) { xpp.red = true; root = rotateLeft(root, xpp); } } } } } } static TreeNode balanceDeletion(TreeNode root, TreeNode x) { for (TreeNode xp, xpl, xpr;;) { if (x == null || x == root) return root; else if ((xp = x.parent) == null) { x.red = false; return x; } else if (x.red) { x.red = false; return root; } else if ((xpl = xp.left) == x) { if ((xpr = xp.right) != null && xpr.red) { xpr.red = false; xp.red = true; root = rotateLeft(root, xp); xpr = (xp = x.parent) == null ? null : xp.right; } if (xpr == null) x = xp; else { TreeNode sl = xpr.left, sr = xpr.right; if ((sr == null || !sr.red) && (sl == null || !sl.red)) { xpr.red = true; x = xp; } else { if (sr == null || !sr.red) { if (sl != null) sl.red = false; xpr.red = true; root = rotateRight(root, xpr); xpr = (xp = x.parent) == null ? null : xp.right; } if (xpr != null) { xpr.red = (xp == null) ? false : xp.red; if ((sr = xpr.right) != null) sr.red = false; } if (xp != null) { xp.red = false; root = rotateLeft(root, xp); } x = root; } } } else { // symmetric if (xpl != null && xpl.red) { xpl.red = false; xp.red = true; root = rotateRight(root, xp); xpl = (xp = x.parent) == null ? null : xp.left; } if (xpl == null) x = xp; else { TreeNode sl = xpl.left, sr = xpl.right; if ((sl == null || !sl.red) && (sr == null || !sr.red)) { xpl.red = true; x = xp; } else { if (sl == null || !sl.red) { if (sr != null) sr.red = false; xpl.red = true; root = rotateLeft(root, xpl); xpl = (xp = x.parent) == null ? null : xp.left; } if (xpl != null) { xpl.red = (xp == null) ? false : xp.red; if ((sl = xpl.left) != null) sl.red = false; } if (xp != null) { xp.red = false; root = rotateRight(root, xp); } x = root; } } } } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/72103.html
摘要:關于的源碼分析,本文并不打算展開講了。大家可以參考我之前的一篇文章源碼詳細分析。在刪除節點時,父類的刪除邏輯并不會修復所維護的雙向鏈表,這不是它的職責。在節分析鏈表建立過程時,我故意忽略了部分源碼分析。 1. 概述 LinkedHashMap 繼承自 HashMap,在 HashMap 基礎上,通過維護一條雙向鏈表,解決了 HashMap 不能隨時保持遍歷順序和插入順序一致的問題。除此...
摘要:很多文章或書籍在介紹紅黑樹的時候直接上來就是紅黑樹的個基本性質插入刪除操作等。這也不奇怪,算法的作者就是紅黑樹的作者之一。所以,理解樹對掌握紅黑樹是至關重要的。 本文主要包括以下內容: 什么是2-3樹 2-3樹的插入操作 紅黑樹與2-3樹的等價關系 《算法4》和《算法導論》上關于紅黑樹的差異 紅黑樹的5條基本性質的分析 紅黑樹與2-3-4樹的等價關系 紅黑樹的插入、刪除操作 JDK ...
摘要:若遇到哈希沖突,則將沖突的值加到鏈表中即可。之后相比于之前的版本,之后在解決哈希沖突時有了較大的變化,當鏈表長度大于閾值默認為時,將鏈表轉化為紅黑樹,以減少搜索時間。有序,唯一紅黑樹自平衡的排序二叉樹。 本文是最最最常見Java面試題總結系列第三周的文章。主要內容: Arraylist 與 LinkedList 異同 ArrayList 與 Vector 區別 HashMap的底層...
摘要:訪問順序調用過訪問的元素會放到鏈尾,迭代會從鏈首開始插入順序按插入順序迭代出來內部是基于紅黑樹實現的,并且默認會通過按照類型進行自然排序。 對于常用的集合大家都不陌生,但是深入到內部原理可能都是一知半解,通過閱讀源碼理解如下。 ArrayList ArrayList內部就是一個默認大小為10的動態對象數組容器,每當add一個新數據的時候,如果大于原來的容器大小,則會通過Arrays.c...
摘要:源碼剖析由于紅黑樹的操作我這里不說了,所以這里基本上也就沒什么源碼可以講了,因為這里面重要的算法都是,這里的是指,他們是算法導論的作者,也就是說里面算法都是參照算法導論的偽代碼。因為紅黑樹是平衡的二叉搜索樹,所以其包含操作的時間復雜度都為。 本文章首發于個人博客,鑒于sf博客樣式具有賞心悅目的美感,遂發表于此,供大家學習、批評。本文還在不斷更新中,最新版可移至個人博客。? 繼上篇文章...
閱讀 2968·2021-10-15 09:41
閱讀 1625·2021-09-22 15:56
閱讀 2105·2021-08-10 09:43
閱讀 3278·2019-08-30 13:56
閱讀 1783·2019-08-30 12:47
閱讀 653·2019-08-30 11:17
閱讀 2774·2019-08-30 11:09
閱讀 2197·2019-08-29 16:19