From 176080cc1f09cdbe46250d3d74dd42757e6a5800 Mon Sep 17 00:00:00 2001 From: Ou Changkun Date: Tue, 3 Apr 2018 19:43:18 +0200 Subject: [PATCH] =?UTF-8?q?resolve=20#3,=20=E4=BF=AE=E6=94=B9=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- book/4-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/4-containers.md b/book/4-containers.md index 4edc40a..fae515a 100644 --- a/book/4-containers.md +++ b/book/4-containers.md @@ -70,7 +70,7 @@ std::sort(arr.begin(), arr.end()); C++11 引入了两组无序容器:`std::unordered_map`/`std::unordered_multimap` 和 `std::unordered_set`/`std::unordered_multiset`。 -它们的用法和原有的 `std::map`/`std::multimap`/`std::set`/`set::multiset` 基本类似,由于这些容器我们已经很熟悉了,便不一一举例,我们直接来比较一下`std::map`和`std::unorder_map`: +它们的用法和原有的 `std::map`/`std::multimap`/`std::set`/`set::multiset` 基本类似,由于这些容器我们已经很熟悉了,便不一一举例,我们直接来比较一下`std::map`和`std::unordered_map`: ```cpp #include