Here is a multiset containing a Value and String pair
istream_iterator<string> i(f);
multiset<string> s(i, istream_iterator<string>());
// The code below sorts this according to is Value by declaring a new multimap
multimap<size_t, string> wordstats;
for(multiset<string>::const_iterator i = s.begin(); i != s.end(); i = s.upper_bound(*i))
{
wordstats.insert( make_pair( s.count(*i), *i ));
}
How would you sort this multiset by string? ie: Alphabetically