STL-Common associative container code-set & Multiset

Source: Internet
Author: User

The code is as follows:

/*5. Set & Multiset*/    Set<string>cities{"Braunschweig","Hanover","Frankfurt","New York",        "Chicago","Toronto","Paris","Frankfurt"    }; Multiset<string>dup_cities {"Braunschweig","Hanover","Frankfurt","New York",        "Chicago","Toronto","Paris","Frankfurt"    }; cout<<"Cities before:"<<Endl; Containerutil<Set<string>>::p rintelements (cities); Containerutil<multiset<string>>::p rintelements (dup_cities); Cities.insert ({"London","Munich","Hanover","Braunschweig" }); Dup_cities.insert ({"London","Munich","Hanover","Braunschweig" }); cout<<"Cities after:"<<Endl; Containerutil<Set<string>>::p rintelements (cities); Containerutil<multiset<string>>::p rintelements (dup_cities);

Operation Result:
Cities before:
Braunschweig Chicago Frankfurt Hanover New York Paris Toronto
Braunschweig Chicago Frankfurt Frankfurt Hanover New York Paris Toronto
Cities after:
Braunschweig Chicago Frankfurt Hanover London Munich New York Paris Toronto
Braunschweig Braunschweig Chicago Frankfurt Frankfurt Hanover Hanover London Munich New York Paris Toronto

STL-Common associative container code-set & Multiset

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.