1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
| #include<iostream> #include<math.h> #include<set> #include<utility> #include<string> using std::string; using std::cout; using std::endl; using std::set;
template<typename Container> void display(const Container & c){ typename Container::const_iterator sit=c.begin(); while(sit!=c.end()){ cout<<*sit<<" "; ++sit; } cout<<endl; }
void test0(){
int array[10]={3,1,5,4,8,6,5,3,7,5}; set<int> setInt(array,array+10); display(setInt);
set<int>::iterator it=setInt.begin();
}
void test1(){ int array[10]={3,1,5,4,8,6,5,3,7,5}; set< int,std::greater<int> > setInt(array,array+10);
display(setInt); }
class Point{ public: Point(int x,int y) :_ix(x) ,_iy(y) { }
friend std::ostream & operator<<(std::ostream & os,const Point &rhs);
float distance()const{ return sqrt(_ix*_ix+_iy*_iy); } private: int _ix; int _iy; };
std::ostream &operator<<(std::ostream & os,const Point &rhs){ os<<"("<<rhs._ix <<","<<rhs._iy <<")"; return os; }
struct Compare//自己要对自定义类型的数据的大小比较规则进行规定 { bool operator()(const Point & lhs,const Point & rhs)const{ return lhs.distance()<rhs.distance(); } };
void test2(){ set<Point,Compare> setPoint{ Point(1,2), Point(3,4), Point(5,6), Point(-1,3), }; for(auto &point:setPoint){ cout<<point<<endl;
} }
void test3(){ std::pair<string,int> value("hello",100); cout<<value.first<<"----->"<<value.second<<endl;
}
void test4(){
int array[10]={3,1,5,4,8,6,5,3,7,5}; set<int> setInt(array,array+10); display(setInt);
set<int>::iterator it=setInt.begin(); std::pair<set<int>::iterator, bool> ret=setInt.insert(11); if(ret.second){ cout<<"insert successful"<<endl; cout<<"*(ret.first)="<<*(ret.first)<<endl; }else{ cout<<"insert failure"<<endl; } display(setInt);
size_t cnt=setInt.count(10); cout<<"cnt="<<cnt<<endl;
auto iter=setInt.find(111); if(iter!=setInt.end()){ cout<<"*(iter)="<<*iter<<endl; }else{ cout<<"find failure"<<endl; }
}
int main(){ test0(); test2(); test3(); test4(); return 0; }
|