zoukankan      html  css  js  c++  java
  • C++ sort()和is_sorted()的升序降序和自定义排序

    我们分别给数组和向量两个名称:

    int a[]={1,2,3,4,5};
    vector<int> v;
    

    sort()

    1. 头文件:#include<algorithm>;
    2. 作用:将数组或向量进行排序;
    3. 默认排序方式:升序;
    4. 使用格式(数组和vector):
    sort(a,a+5);
    sort(v.begin(),v.end());//默认升序
    
    sort(a,a+5,greater<int>());
    sort(v.begin(),v.end(),greater<int>());//降序
    
    bool cmp(const int & a, const int & b){
       return a%10>b%10;   //这里我们自定义为a的个位数比b大,则a在b前
    } //这里的返回值的含义是a必须在b前面返回true,否则返回false;
    
    sort(a,a+5,cmp);
    sort(v.begin(),v.end(),cmp);//自定义排序规则
    

    is_sorted()

    1. 头文件:#include<algorithm>;
    2. 作用:检查数组或者向量是否被排序好;
    3. 默认检查方式:升序;
    4. 特殊要求:需要C++11的特性;
    5. 返回值:truefalse
    6. 使用格式:
    is_sorted(a,a+5);
    is_sorted(v.begin(),v.end());//默认升序检查
    
    is_sorted(a,a+5,greater<int>());
    is_sorted(v.begin(),v.end(),greater<int>());//降序检查
    
    bool cmp(const int & a, const int & b){
      return a%10>b%10; 
    } 
    
    is_sorted(a,a+5,cmp);
    is_sorted(v.begin(),v.end(),cmp);//自定义排序规则
    
  • 相关阅读:
    oracle 常用函数
    css 让div 置于最顶层而不被其他东西挡住
    hibernate学习
    css居中参考
    log4j 将日志文件输出到web-inf下的解决办法
    mybatis 传递多个值的解决办法
    web项目中的路径问题
    sring 监听器
    struts2返回json字符串
    java 需要看的书籍
  • 原文地址:https://www.cnblogs.com/yuhan-blog/p/12309029.html
Copyright © 2011-2022 走看看