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