Skip to content

Commit 6ffbc7f

Browse files
committed
fix spell
1 parent d987c16 commit 6ffbc7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/08_字典/dict.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- remove(key): 删除一个 key,这里其实不是真删除,而是标记为 Empty
1010

1111
字典最常使用的场景就是 k,v 存储,经常用作缓存,它的 key 值是唯一的。
12-
内置库 collections.OrderDict 还保持了 key 的添加顺序,其实用我们之前实现的链表也能自己实现一个 OrderDict
12+
内置库 collections.OrderedDict 还保持了 key 的添加顺序,其实用我们之前实现的链表也能自己实现一个 OrderedDict
1313

1414
# 实现 dict ADT
1515

0 commit comments

Comments
 (0)