You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
867 B
C++
30 lines
867 B
C++
11 years ago
|
#include <iostream>
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <utility>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
// notice how the lists are nested to match the templates' parameters:
|
||
|
map<string, vector<pair<string, int>>> name_languages_year {
|
||
|
{"Dennis Ritchie", {{"B", 1969}, {"C", 1973}}},
|
||
|
{"Niklaus Wirth", {{"Pascal", 1970}, {"Modula-2", 1973},
|
||
|
{"Oberon", 1986}}},
|
||
|
{"Bjarne Stroustrup", {{"C++", 1983}}},
|
||
|
{"Walter Bright", {{"D", 1999}}}
|
||
|
};
|
||
|
|
||
|
// prints `Pascal':
|
||
|
cout << name_languages_year["Niklaus Wirth"].at(0).first << endl;
|
||
|
|
||
|
// adds a new entry to the map:
|
||
|
name_languages_year["John McCarthy"] = {
|
||
|
{"Lisp", 1958}
|
||
|
};
|
||
|
|
||
|
// prints 'Lisp':
|
||
|
cout << name_languages_year["John McCarthy"].at(0).first << endl;
|
||
|
}
|