vector sort in c++ code example
Example 1: how to sort a vector in reverse c++
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
vector<int> v = { 10, 9, 8, 6, 7, 2, 5, 1 };
sort(v.begin(), v.end(), greater <>());
}
Example 2: sort vector
sort(v.begin(), v.end());
Example 3: std vector sort
std::sort(myvector.begin(), myvector.end());
Example 4: sort a vector c++
sort(a.begin(), a.end());
Example 5: how to sort a vector
vector<int> v;
sort(v.begin(),v.end());