Home > Backend Development > C++ > body text

How to Use std::sort to Order an Array in C ?

Susan Sarandon
Release: 2024-10-24 01:57:29
Original
496 people have browsed it

How to Use std::sort to Order an Array in C  ?

Sorting Arrays with std::sort in C

Question: How can I use the C standard template library's std::sort() to arrange an array in ascending order?

<code class="cpp">int v[2000];</code>
Copy after login

Answer: In C 11, you can utilize two convenient functions:

<code class="cpp">std::sort(std::begin(v), std::end(v));</code>
Copy after login
Copy after login

Additional Question: Does C have a way to determine the start and end positions of an array?

Answer: Yes, in C 11, std::begin and std::end are overloaded for arrays.

<code class="cpp">std::sort(std::begin(v), std::end(v));</code>
Copy after login
Copy after login

If you're using an earlier version of C , you can create your own versions of begin and end:

Non-const:

<code class="cpp">template<class Cont>
typename Cont::iterator begin(Cont&amp; c){
  return c.begin();
}

template<class Cont>
typename Cont::iterator end(Cont&amp; c){
  return c.end();
}</code>
Copy after login

Const:

<code class="cpp">template<class Cont>
typename Cont::const_iterator begin(Cont const&amp; c){
  return c.begin();
}

template<class Cont>
typename Cont::const_iterator end(Cont const&amp; c){
  return c.end();
}</code>
Copy after login

Overloads for C-style arrays:

<code class="cpp">template<class T, std::size_t N>
T* begin(T (&amp;arr)[N]){
  return &amp;arr[0];
}

template<class T, std::size_t N>
T* end(T (&amp;arr)[N]){
  return arr + N;
}</code>
Copy after login

The above is the detailed content of How to Use std::sort to Order an Array in C ?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!