InterviewSolution
Saved Bookmarks
| 1. |
What are the Associative Containers?(a) Containers that implements data structures which can be accessed sequentially(b) Containers that implements sorted data structures for fast search in O(logn)(c) Containers that implements unsorted(hashed) data structures for quick search in O(1)(d) Containers that implements data structures which can be accessed non-sequentially |
|
Answer» Correct answer is (b) Containers that implements sorted data structures for fast search in O(logn) Explanation: Associative Containers is the subset of Containers that implements sorted data structures for fast search in O(logn). |
|