-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaps2.cpp
36 lines (22 loc) · 947 Bytes
/
maps2.cpp
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
#include <iostream>
#include <map>
#include <string>
#include <list>
using namespace std;
int main(){
//a pokedex
map<string, list<string>> pokedex; //associate a string with a list of strings
list<string> pikachuAttacks{"thunder shock","tail whip","quick attack"};
list<string> charmanderAttacks{"flame thrower","scary face"};
list<string> chikoritaAttacks{"razor leaf","poison powder"};
pokedex.insert(pair<string, list<string>>("Pikachu",pikachuAttacks ));
pokedex.insert(pair<string, list<string>>("Charmander",charmanderAttacks ));
pokedex.insert(pair<string, list<string>>("Chikorita",chikoritaAttacks ));
for(auto pair : pokedex){
cout << pair.first << "-";
}
for(auto attack : pair.second){//attack is what we will call the seocnd half of the pair, you can call it move or whatever
cout << attack << "-";
cout << endl;
}
}