This commit is contained in:
krahets
2023-02-28 20:06:23 +08:00
parent 922c050246
commit 24673ec2b1
12 changed files with 10 additions and 113 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
comments: true
---
# 6.1.   哈希表Hash Map
# 6.1.   哈希表
哈希表通过建立「键 key」和「值 value」之间的映射,实现高效的元素查找。具体地,输入一个 key ,在哈希表中查询并获取 value ,时间复杂度为 $O(1)$ 。