HashMap在Java8中的红黑树

Java8的HashMap引入了红黑树优化,当链表长度达到8时,会转为红黑树结构,提高查找效率。文章探讨了HashMap中put()方法的更新逻辑,包括onlyIfAbsent和evict参数的作用。
摘要由CSDN通过智能技术生成

 红黑树在HashMap中的应用

我们知道在jdk1.8之前,HashMap采用链表的方式解决冲突,不过在更新1.8版本之后,

HashMap采用了链表加红黑树的方式来优化了结构。

话不多说,我们来看源码:

/**
     * The bin count threshold for using a tree rather than list for a
     * bin.  Bins are converted to trees when adding an element to a
     * bin with at least this many nodes. The value must be greater
     * than 2 and should be at least 8 to mesh with assumptions in
     * tree removal about conversion back to plain bins upon
     * shrinkage.
     */
    static final int TREEIFY_THRESHOLD = 8;
结点数量达到8个将链表转为红黑树
/**
     * The bin count threshold for untreeifying a (split) bin during a
     * resize operation. Should be less than TREEIFY_THRESHOLD, and at
     * most 6 to mesh with shrinkage detection under removal.
     */
    static final int UNTREEIFY_THRESHOLD = 6;
resi
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值