C++sort函数详解与示例演示

摘要:c++ sort 函数用于对容器元素进行排序。默认情况下,它使用 字符串数组进行排序。

<img src="https://img.php.cn/upload/article/000/000/164/1712054

<p>摘要:c++ sort 函数用于对容器元素进行排序。默认情况下,它使用 字符串数组进行排序。</p>
<p><img src=”https://img.php.cn/upload/article/000/000/164/171205434266801.jpg” alt=”C++sort函数详解与示例演示”></p>
<p><strong>C++ 排序函数详解与示例演示</strong></p>
<p><strong>sort 函数概述</strong></p>
<p>sort 函数是 C++ 标准模板库 (STL) 中一个强大的函数,用于对容器元素进行排序。它根据指定的比较规则将容器中的元素<a style=”color:#f60; text-decoration:underline;” href=”https://www.php.cn/zt/56129.html” target=”_blank”>排列</a>成升序或降序。</p>
<p>函数声明如下:</p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:cpp;toolbar:false;’>template<typename Iter>
void sort(Iter first, Iter last);</pre><p class=”contentsignin”>登录后复制</p></p><p>其中:</p><ul><li><strong>Iter</strong>:指向容器元素的迭代器类型,可以在容器中移动和访问元素。</li><li><strong>first</strong>:容器开始迭代器,指定要排序元素的范围的第一个元素。</li><li><strong>last</strong>:容器结束迭代器,指定要排序元素的范围的最后一个元素之后的元素。</li></ul><p><strong>自定义比较规则</strong></p><p>默认情况下,sort 函数使用 <code><</code> 运算符进行比较,这意味着它将容器元素按升序排列。如果您希望根据不同的规则排序,可以提供一个自定义比较函数:</p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:cpp;toolbar:false;’>bool compare(const Type1& a, const Type2& b)
{
// 自定义比较规则
}

// 在 sort 函数中使用自定义比较函数
sort(first, last, compare);</pre><p class=”contentsignin”>登录后复制</p></p><p><strong>实战案例</strong></p><p><strong>示例 1:对整数数组排序</strong></p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:cpp;toolbar:false;’>#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
int arr[] = {5, 2, 7, 1, 3};
int len = sizeof(arr) / sizeof(arr[0]);

sort(arr, arr + len);

cout << "排序后的数组:";
for (int i = 0; i < len; i++)
{
cout << " " << arr[i];
}
cout << endl;

return 0;
}</pre><p class=”contentsignin”>登录后复制</p></p><p>输出:</p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:php;toolbar:false;’>排序后的数组: 1 2 3 5 7</pre><p class=”contentsignin”>登录后复制</p></p><p><strong>示例 2:对字符串数组排序</strong></p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:cpp;toolbar:false;’>#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
string arr[] = {"apple", "orange", "banana", "kiwi", "mango"};
int len = sizeof(arr) / sizeof(arr[0]);

sort(arr, arr + len);

cout << "排序后的数组:";
for (int i = 0; i < len; i++)
{
cout << " " << arr[i];
}
cout << endl;

return 0;
}</pre><p class=”contentsignin”>登录后复制</p></p><p>输出:</p><p class=”code” style=”position:relative; padding:0px; margin:0px;”><pre class=’brush:php;toolbar:false;’>排序后的数组: apple banana kiwi mango orange</pre><p class=”contentsignin”>登录后复制</p></p>

以上就是C++sort函数详解与示例演示的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:pansz,转转请注明出处:https://www.dingdanghao.com/article/295705.html

(0)
上一篇 2024-04-02 18:40
下一篇 2024-04-02 18:40

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号