STL常用排序算法

简介: STL常用排序算法

全部案例链接


https://download.csdn.net/download/weixin_45525272/12536637



常用排序算法


merge算法 容器元素合并,并存储到另一容器中


@param beg1 容器1开始迭代器
@param end1 容器1结束迭代器
@param beg2 容器2开始迭代器
@param end2 容器2结束迭代器
@param dest  目标容器开始迭代器


merge(iterator beg1, iterator end1, iterator beg2, iterator end2, iterator dest)


sort算法 容器元素排序


注意:两个容器必须是有序的
@param beg 容器1开始迭代器
@param end 容器1结束迭代器
@param _callback 回调函数或者谓词(返回bool类型的函数对象)
sort(iterator beg, iterator end, _callback)


sort算法 对指定范围内的元素随机调整次序(洗牌)


@param beg 容器开始迭代器
@param end 容器结束迭代器


random_shuffle(iterator beg, iterator end)


reverse算法 反转指定范围的元素


@param beg 容器开始迭代器
@param end 容器结束迭代器


reverse(iterator beg, iterator end)


#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include <algorithm>
#include <vector>
#include <functional>
#include <ctime>
/*
merge算法 容器元素合并,并存储到另一容器中  这两个容器 必须也是有序的
@param beg1 容器1开始迭代器
@param end1 容器1结束迭代器
@param beg2 容器2开始迭代器
@param end2 容器2结束迭代器
@param dest  目标容器开始迭代器
*/
void test01()
{
  vector<int>v1;
  vector<int>v2;
  for (int i = 0; i < 10;i++)
  {
    v1.push_back(i);
    v2.push_back(i + 1);
  }
  vector<int>vTarget;
  vTarget.resize(v1.size() + v2.size());
  merge(v1.begin(), v1.end(), v2.begin(), v2.end(), vTarget.begin());
  for_each(vTarget.begin(), vTarget.end(), [](int v){ cout << v << " "; });
}
/*
sort算法 容器元素排序
注意:两个容器必须是有序的
@param beg 容器1开始迭代器
@param end 容器1结束迭代器
@param _callback 回调函数或者谓词(返回bool类型的函数对象)
*/
void test02()
{
  vector<int>v1;
  v1.push_back(10);
  v1.push_back(40);
  v1.push_back(20);
  v1.push_back(90);
  v1.push_back(50);
  sort(v1.begin(), v1.end());
  for_each(v1.begin(), v1.end(), [](int val){cout << val << " "; });
  cout << endl;
  sort(v1.begin(), v1.end(), greater<int>());
  for_each(v1.begin(), v1.end(), [](int val){cout << val << " "; });
  cout << endl;
}
//random_shuffle(iterator beg, iterator end) 洗牌
void test03()
{
  vector<int>v;
  for (int i = 0; i < 10;i++)
  {
    v.push_back(i);
  }
  random_shuffle(v.begin(), v.end());
  for_each(v.begin(), v.end(), [](int val){cout << val << " "; });
}
//reverse(iterator beg, iterator end)
void test04()
{
  vector<int>v;
  for (int i = 0; i < 10; i++)
  {
    v.push_back(i);
  }
  reverse(v.begin(), v.end());
  for_each(v.begin(), v.end(), [](int val){cout << val << " "; });
}
int main(){
  //使用当前时间进行随机数发生器的初始化。
  srand((unsigned int)time(NULL));
  //test01();
  //test02();
  //test03();
  test04();
  system("pause");
  return EXIT_SUCCESS;
}


相关文章
|
26天前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
20 0
|
5月前
|
算法 前端开发 Linux
【常用技巧】C++ STL容器操作:6种常用场景算法
STL在Linux C++中使用的非常普遍,掌握并合适的使用各种容器至关重要!
89 10
|
4月前
|
算法 C++
STL算法大全
以上只是一部分STL算法的简单概述,每一个算法都有其特定的使用场景和规则,具体使用时需要参考相关文档或者教程进行深入理解和学习。
31 0
|
5月前
|
算法 搜索推荐 C++
C++之STL常用算法(遍历、查找、排序、拷贝、替换、算数生成、集合)
C++之STL常用算法(遍历、查找、排序、拷贝、替换、算数生成、集合)
|
6月前
|
算法 C++ 容器
黑马c++ STL常用算法 笔记(5) 常用算术生成算法
黑马c++ STL常用算法 笔记(5) 常用算术生成算法
|
6月前
|
算法 C++ 容器
黑马c++ STL常用算法 笔记(4) 常用拷贝和替换算法
黑马c++ STL常用算法 笔记(4) 常用拷贝和替换算法
|
6月前
|
存储 算法 搜索推荐
黑马c++ STL常用算法 笔记(3) 排序算法
黑马c++ STL常用算法 笔记(3) 排序算法
|
6月前
|
算法 C++
黑马c++ STL常用算法 笔记(2) 查找算法
黑马c++ STL常用算法 笔记(2) 查找算法
|
6月前
|
算法 C++
c++算法学习笔记 (21) STL
c++算法学习笔记 (21) STL
|
6月前
|
算法 C++ 容器
黑马c++ STL常用算法 笔记(6) 常用集合算法
黑马c++ STL常用算法 笔记(6) 常用集合算法