Reputation: 1942
Which option is the best way to use an unordered_set for an efficient look up,
I am asking because these three are mentioned in Effective STL by Scott Meyers but the book is a bit old.
Upvotes: 0
Views: 170
Reputation: 8370
If you have to work with a pre-C++11 compiler, use boost:
Upvotes: 2