-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMultiMaps.cpp
More file actions
39 lines (33 loc) · 1.21 KB
/
MultiMaps.cpp
File metadata and controls
39 lines (33 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Created by 赵健 on 2021/8/17.
//
#include "MultiMaps.h"
#include <string>
#include <map>
#include <iostream>
typedef int KeyType;
typedef std::pair<const KeyType, std::string> Pair;
typedef std::multimap<KeyType, std::string> MapCode;
void MultiMaps::test() {
using namespace std;
MapCode codes;
codes.insert(Pair(415, "San Francisco"));
codes.insert(Pair(510, "Oakland"));
codes.insert(Pair(718, "Brooklyn"));
codes.insert(Pair(718, "Staten Island"));
codes.insert(Pair(515, "San Rafael"));
codes.insert(Pair(510, "Berkeley"));
cout << "Number of cities with area code 415: " << codes.count(415) << endl;
cout << "Number of cities with area code 718: " << codes.count(718) << endl;
cout << "Number of cities with area code 510: " << codes.count(510) << endl;
cout << "Area Code City\n";
MapCode::iterator it;
for (it = codes.begin(); it != codes.end(); ++it) {
cout << " " << (*it).first << " " << (*it).second << endl;
}
pair<MapCode::iterator, MapCode::iterator> range = codes.equal_range(718);
cout << "Cities with area code 718:\n";
for (it = range.first; it != range.second; ++it) {
cout << (*it).second << endl;
}
}