Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- std::map< std::string, std::set< std::string> > mymap;
- std::set< std::string> s;
- s.insert( "orange");
- mymap.insert( std::make_pair( std::string("car") , s));
- s.insert( "blue");
- mymap.insert( std::make_pair( std::string("car") , s));
Advertisement
Add Comment
Please, Sign In to add comment