Skip to content

Commit 5e3ca6d

Browse files
authored
修改映射表为map
映射表这个词太抽象了,不如直直接叫关键词`map`
1 parent 196e2e9 commit 5e3ca6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/essential/base/65.map.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
date: 2022-08-23
33
---
44

5-
# 映射表
5+
# map
66

7-
一般来说,映射表数据结构实现通常有两种,哈希表(hash table)和搜索树(search tree),区别在于前者无序,后者有序。在 Go 中,`map`的实现是基于哈希桶(也是一种哈希表),所以也是无序的,本篇不会对实现原理做过多的讲解,这超出了基础的范围,后续会进行深入分析。
7+
一般来说,map数据结构实现通常有两种,哈希表(hash table)和搜索树(search tree),区别在于前者无序,后者有序。在 Go 中,`map`的实现是基于哈希桶(也是一种哈希表),所以也是无序的,本篇不会对实现原理做过多的讲解,这超出了基础的范围,后续会进行深入分析。
88

99
::: tip
1010

0 commit comments

Comments
 (0)