C + + Sort () usage detailed __c++

Source: Internet
Author: User
Sort Sort Usage in C + +
The STL has its own sort function sortsort to sort all the elements in a given interval use this function only with #include <algorithm> 1. Ascending sort

Sort (begin,end), representing a range, example:
#include <algorithm>
int main ()
{
 int a[20]={ 2,4,1,23,5,76,0,43,24,65},i;
 for (i=0;i<20;i++)
  cout<<a[i]<<endl;
 Sort (a,a+20);
 for (i=0;i<20;i++)
 cout<<a[i]<<endl;
 return 0;
}

2. Descending sort

You write a comparison function to implement it, and then call the three-parameter Sort:sort (begin,end,compare). For the list container, this method is also applicable, and the compare as a sort parameter is OK

Write your own compare function:
bool Compare (int a,int b)
{return
  a<b;//ascending order, if change to return a>b, descending, a<b to ascending
}# Include <algorithm>
int main ()
{
  int a[20]={2,4,1,23,5,76,0,43,24,65},i;
  for (i=0;i<20;i++)
  cout<<a[i]<<endl;
  Sort (a,a+20,compare);
  for (i=0;i<20;i++)
  cout<<a[i]<<endl;
  return 0;
}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.