What is "map" in STL?
Answers were Sorted based on User's Feedback
Answer / saroj das ,balsore
map class support an associative container in which
unique keys are mapped .with values. in essence ,a key is
simply name that you give to a value .once value you can
retrive it by using has been stored.
the most general sense, a map is a list of key /
value pairs .
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shakti singh khinchi
map is a associative container which is known for a key
value pair. Whereas key always unique and associated with a
non unique value.
maps are sorted on the basis of keys. They are simplified
form of hashing.
| Is This Answer Correct ? | 1 Yes | 0 No |
what are the types of Member Functions?
What is the difference between multiple and multilevel inheritance in c++?
What is the topic of the C++ FAQ list?
Difference between pointer to constant vs. Pointer constant
What is the difference between structures and unions?
What do you mean by global variables?
Why we use #include iostream in c++?
What are formatting flags in ios class?
Is swift faster than c++?
Specify different types of decision control statements?
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
0 Answers College School Exams Tests, CS,
What is pointer -to-members in C++? Give their syntax?