I wanted to know , how is the MAP
available in C++ , not MultiMap just simple Map , implemented internally .
What i could best think of is :
For Integer Mapping : A Balanced Binary Search Tree could be used .
For String Mapping : Compressed Trie or something similar could be used .
I am really curious , how is it really implemented in STL Map .Is some hashing function employed or is it something totally different from this .