Number Of Repitations In The Vector In Descending Order Code Example


Example: sort vector descending

int main()  {      // Get the vector      vector<int> a = { 1, 45, 54, 71, 76, 12 };         // Print the vector      cout << "Vector: ";      for (int i = 0; i < a.size(); i++)          cout << a[i] << " ";      cout << endl;         // Sort the vector in descending order      sort(a.begin(), a.end(), greater<int>());         // Print the reversed vector      cout << "Sorted Vector in descendiing order:n";      for (int i = 0; i < a.size(); i++)          cout << a[i] << " ";      cout << endl;         return 0;  }

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy