0 C++ 2016-03-23 C++标准库小记 C++类相关要点 set和unordered_Set1234567set<int> s1 = {1,2,3,4,5};if (s1.find(3) != s1.end()) cout<<"Found it"<<endl; unordered_set<int> s2 = {1,2,3,4,5};if (s2.