博客
关于我
C++ sort()函数使用简介
阅读量:531 次
发布时间:2019-03-05

本文共 1015 字,大约阅读时间需要 3 分钟。

Sort函数简介

Sort函数是C++中的一个强大的排序函数,用于对数组或容器中的元素进行排序,默认以升序排列,也可以根据需求设置为降序或其他自定义排序规则。Sort函数采用快速排序算法模板,具有较高的效率,时间复杂度为n*log2(n)。

函数原型

Sort函数有三个主要形式:

void sort(const RanIt& first, const RanIt& last);void sort(const RanIt& first, const RanIt& last, Pr pred);void sort(RandomAccessIterator first, RandomAccessIterator last, Compare comp);

参数说明

  • first:指向数组的起始元素地址。
  • last:指向数组末尾元素的下一个位置,即数组结束的标志。
  • comp(可选):自定义比较函数,用于指定排序规则。如果不需要自定义规则,默认采用升序排序。
  • 所需头文件

    #include 

    样例

    #include 
    #include
    using namespace std;int main() { int a[6] = {8, 5, 6, 7, 1, 0}; sort(a, a + 6); for (int i = 0; i < 6; ++i) { cout << a[i] << " "; } return 0;}

    运行结果:

    0 1 5 6 7 8

    自定义比较函数

    bool compare(int a, int b) {    return a > b;}

    完整代码:

    #include 
    #include
    using namespace std;bool compare(int a, int b) { return a > b;}int main() { int a[6] = {8, 5, 6, 7, 1, 0}; sort(a, a + 6, compare); for (int i = 0; i < 6; ++i) { cout << a[i] << " "; } return 0;}

    运行结果:

    8 7 6 5 1 0

    转载地址:http://zrxzz.baihongyu.com/

    你可能感兴趣的文章
    postgres10配置huge_pages
    查看>>
    PostgreSQL 10.0 preview 变化 - pg_xlog,pg_clog,pg_log目录更名为pg_wal,pg_xact,log
    查看>>
    PostgreSQL 10.1 手册_部分 II. SQL 语言_第 15章 并行查询_15.2. 何时会用到并行查询?...
    查看>>
    PostgreSQL 10.1 手册_部分 II. SQL 语言_第 9 章 函数和操作符_9.23. 行和数组比较
    查看>>
    PostgreSQL 10.1 手册_部分 III. 服务器管理_第 21 章 数据库角色
    查看>>
    Postgresql 12.9如何配置允许远程连接
    查看>>
    PostgreSQL 9.6 同步多副本 与 remote_apply事务同步级别 应用场景分析
    查看>>
    Postgresql CopyManager 流式批量数据入库
    查看>>
    PostgreSQL cube 插件 - 多维空间对象
    查看>>
    PostgreSQL Daily Maintenance - cluster table
    查看>>
    PostgreSQL on Linux 最佳部署手册
    查看>>
    PostgreSQL Oracle 兼容性之 - pipelined
    查看>>
    PostgreSQL Point-In-Time Recovery (Incremental Backup)
    查看>>
    postgresql Streaming Replication监控与注意事项
    查看>>
    postgresql 不需要付费_使用数据传输在PostgreSQL执行 外部连接运算符
    查看>>
    postgresql 主从配置_生产环境postgresql主从环境配置
    查看>>
    postgresql 函数&存储过程 ; 递归查询
    查看>>
    PostgreSQL 分组聚合查询中 filter 子句替换 case when
    查看>>
    PostgreSQL 同步流复制锁瓶颈分析
    查看>>
    PostgreSQL 备份与还原命令 pg_dump
    查看>>