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

溫馨提示×

溫馨提示×

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

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

Java數據結構之如何實現HashMap

發布時間:2021-08-20 09:49:05 來源:億速云 閱讀:134 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關Java數據結構之如何實現HashMap,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Java數據結構-HashMap

1. HashMap數據結構

沒有哈希沖突時,為數組,支持動態擴容

Java數據結構之如何實現HashMap

哈希沖突時,分為兩種情況:

1.當沖突長度小于8或數組長度小于64(MIN_TREEIFY_CAPACITY默認值為64)時,為數組+鏈表(Node)

2.當沖突長度大于8時,為數組+紅黑樹/鏈表(TreeNode)。

紅黑樹用于快速查找,鏈表用于遍歷。

Java數據結構之如何實現HashMap

2. 紅黑樹

HashMap中的TreeNode是紅黑樹的實現。

TreeNode幾個方法

1. 左旋轉

static <K,V> TreeNode<K,V> rotateLeft(TreeNode<K,V> root,
                       TreeNode<K,V> p) {
      TreeNode<K,V> r, pp, rl;
      if (p != null && (r = p.right) != null) {
        if ((rl = p.right = r.left) != null)
          rl.parent = p;
        if ((pp = r.parent = p.parent) == null)
          (root = r).red = false;
        else if (pp.left == p)
          pp.left = r;
        else
          pp.right = r;
        r.left = p;
        p.parent = r;
      }
      return root;
    }

實現效果如圖

Java數據結構之如何實現HashMap

2. 右旋轉

static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root,
                        TreeNode<K,V> p) {
      TreeNode<K,V> l, pp, lr;
      if (p != null && (l = p.left) != null) {
        if ((lr = p.left = l.right) != null)
          lr.parent = p;
        if ((pp = l.parent = p.parent) == null)
          (root = l).red = false;
        else if (pp.right == p)
          pp.right = l;
        else
          pp.left = l;
        l.right = p;
        p.parent = l;
      }
      return root;
    }

實現效果如圖

Java數據結構之如何實現HashMap

3. 插入

static <K,V> TreeNode<K,V> balanceInsertion(TreeNode<K,V> root,
                          TreeNode<K,V> x) {
      x.red = true;
      for (TreeNode<K,V> 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)) {
          if ((xppr = xpp.right) != null && xppr.red) { //②
            xppr.red = false;
            xp.red = false;
            xpp.red = true;
            x = xpp;
          }
          else {
            if (x == xp.right) { //③
              root = rotateLeft(root, x = xp);
              xpp = (xp = x.parent) == null ? null : xp.parent;
            }
            if (xp != null) { //④
              xp.red = false;
              if (xpp != null) {
                xpp.red = true;
                root = rotateRight(root, xpp);
              }
            }
          }
        }
        else {
          if (xppl != null && xppl.red) { //②
            xppl.red = false;
            xp.red = false;
            xpp.red = true;
            x = xpp;
          }
          else {
            if (x == xp.left) {    //⑤
              root = rotateRight(root, x = xp);
              xpp = (xp = x.parent) == null ? null : xp.parent;
            }
            if (xp != null) {  //⑥
              xp.red = false;
              if (xpp != null) {
                xpp.red = true;
                root = rotateLeft(root, xpp);
              }
            }
          }
        }
      }
    }

實現效果如下:

Java數據結構之如何實現HashMap

Java數據結構之如何實現HashMap

關于“Java數據結構之如何實現HashMap”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

元阳县| 涡阳县| 彭阳县| 汝城县| 维西| 南乐县| 冷水江市| 孝感市| 临夏县| 焉耆| 肥西县| 南召县| 太谷县| 张家口市| 文昌市| 平安县| 依兰县| 九江市| 阳春市| 康定县| 芦山县| 得荣县| 桐梓县| 县级市| 英吉沙县| 正宁县| 陵水| 浪卡子县| 波密县| 浦北县| 绍兴市| 唐海县| 玛曲县| 井冈山市| 通化市| 娱乐| 高安市| 安宁市| 化隆| 子长县| 威宁|