// // Created by light on 19-12-16. // #include #include #include #include #include #include "../container1/output_container.h" #include using namespace std; int main() { set s{1, 1, 1, 2, 3, 4}; cout << s << endl; multiset> ms{1, 1, 1, 2, 3, 4}; cout << ms << endl; map mp{ {"one", 1}, {"two", 2}, {"three", 3}, {"four", 4} }; cout << mp << endl; mp.insert({"four", 4}); cout << mp << endl; cout << (mp.find("four") == mp.end()) << endl; cout << (mp.find("five") == mp.end()) << endl; mp["five"] = 5; cout << mp << endl; multimap mmp{ {"one", 1}, {"two", 2}, {"three", 3}, {"four", 4} }; cout << mmp << endl; mmp.insert({"four", -4}); cout << mmp << endl; cout << (mp.find("four")->second) << endl; cout << (mp.lower_bound("four")->second) << endl; cout << (mp.upper_bound("four")->second) << endl; cout << ((--mp.upper_bound("four"))->second) << endl; multimap::iterator lower, upper; std::tie(lower, upper) = mmp.equal_range("four"); cout << (lower != upper) << endl; // 检测区间非空 cout << lower->second << endl; cout << (--upper)->second << endl; }