What are the mapped_type, key_type, and value_type of a map from int to vector<int>
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:11| Question number:15
All Answers
total answers (1)
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:11| Question number:15
total answers (1)
For
`map<int, vector<int>>`:
-
`mapped_type`
is`vector<int>`
.-
`key_type`
is`int`
.-
`value_type`
is`pair<int, vector<int>>`
.