We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aef66b4 + 58ecde3 commit da6f73bCopy full SHA for da6f73b
MD/HashMap.md
@@ -4,7 +4,7 @@
4
5

6
7
-如图所示,HashMap 底层是基于数据和链表实现的。其中有两个重要的参数:
+如图所示,HashMap 底层是基于数组和链表实现的。其中有两个重要的参数:
8
9
- 容量
10
- 负载因子
@@ -41,4 +41,4 @@ get 和 put 类似,也是将传入的 Key 计算出 index ,如果该位置
41
42
大大提高了查询效率。
43
44
-多线程场景下推荐使用 [ConcurrentHashMap](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ConcurrentHashMap.md)。
+多线程场景下推荐使用 [ConcurrentHashMap](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ConcurrentHashMap.md)。
0 commit comments