how to use sort in descending order cpp code example
Example 1: how to sort in descending order c++
int arr[10];
int length = sizeof(arr)/sizeof(arr[0]);
sort(arr, arr+length, greater<int>());
Example 2: sort vector in descending order
sort(a.begin(), a.end(), greater<int>());