Standard C++ Library User Guide and Tutorial
Manuals
Brands
HP Manuals
Server
HP NonStop G-Series
181
182
183
184
185
186
187
188
189
190
vector<int>::iterator nth = aVec.begin() + 4;
nth_element (aVec.begin(), nth, aVec.end());
cout << "fifth largest is " << *nth << endl;
}
1
...
...
185
186
187
188
189
...
...
250