Files
the-way-to-go_ZH_CN/eBook/08.0.md
AutuanLiu 6d3f1902ba 修复与更正 (#337)
* Update 06.4.md

标点符号错误

* Update 06.5.md

* Update 06.6.md

* Update 06.8.md

修正上一节目录索引错误

* Update 06.8.md

* Update 07.0.md

* Update 07.1.md

* Update 07.6.md

用词不统一

* Update 08.0.md

* Update 08.6.md

用词不统一

* Update 09.0.md

* Update 09.5.md

修改不通顺

* 拼写错误

[建议加上`git remote -v`](https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/)

* Update 10.0.md

* 统一风格

* 调整位置,保证最后一行可以输出

* 保证最后一行可以输出

* 格式

* markdown 修改
2017-03-29 19:03:39 -04:00

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