InterviewSolution
Saved Bookmarks
| 1. |
Unordered map is implemented using _________________(a) binary search tree(b) red black tree(c) heap(d) hash table |
|
Answer» Correct option is (d) hash table Easiest explanation - As unordered map has no order of keys therefore hash table is used to store key-value pairs in a hash table. |
|