Files
the-way-to-go_ZH_CN/eBook/08.0.md
Unknwon 682e26fa38 7.6
2015-02-19 20:28:36 -05:00

13 lines
546 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 8.0 Maps
185
Maps是一种特殊的数据结构一种元素对(pair)的无序集合pair的一个元素是key对应的另一个元素是value所以这个结构也称为关联数组或字典。这是一种快速寻找值的理想结构给定key对应的value可以迅速定位。
Maps这种数据结构在其他编程语言中也称为字典PythonhashHashTable等。
##链接
- [目录](directory.md)
- 上一章:[字符串、数组和切片的应用](07.6.md)
- 下一节:[声明,初始化和make](08.1.md)