sorting a vector 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: vector sort c++

sort(v.begin(), v.end());

Example 3: sort vector

sort(v.begin(), v.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());

Tags:

Misc Example