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
generate (aList.begin(), aList.end(), randomValue);
// sort only the first seven elements
vector<int> start(7);
partial_sort_copy (aList.begin(), aList.end(),
start.begin(), start.end(), greater<int>());
}
1
...
...
183
184
185
186
187
...
...
250