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
// sort the vector ascending
sort (aVec.begin(), aVec.end());
// sort the deque descending
sort (aDec.begin(), aDec.end(), greater<int>() );
// alternative way to sort descending
sort (aVec.rbegin(), aVec.rend());
}
1
...
...
181
182
183
184
185
...
...
250