c++排序相关内置函数(1)

PJ STL中的stable_sort实现

本篇介绍C和C++中的一些排序相关函数

qsort和bsearch

头文件: cstdlib

声明

qsort(void *base, size_t num, size_t width, int (__cdecl *comp)(const void *, const void *))

对序列base排序

bsearch(const void *key, const void *base, size_t num, size_t width, int (__cdecl *comp)(const void *, const void *))

二分查找元素key在序列base中的位置

比较函数的一般写法

// T替换成需要的类型
typedef const void* sort_t;
// 升序
int compare(sort_t a, sort_t b){
    T x=*(T*)a, y=*(T*)b;
    if(x<y) return -1;
    else if(x>y) return 1;
    else return 0;
}
// 降序
int compare2(sort_t a, sort_t b){
    T x=*(T*)a, y=*(T*)b;
    if(x<y) return 1;
    else if(x>y) return -1;
    else return 0;
}

用法

对数组a排序

qsort((void*)a, a的长度, sizeof(a[0]), 比较函数)

二分查找有序序列a中元素x的位置

bsearch((const void*)&x,(const void*)a, a的长度, sizeof(a[0]),比较函数)

实例

#include<iostream>
#include<cstdlib>
using namespace std;
int a[] = { 1,4,6,3,11,9,67,41,2 };

typedef const void* sort_t;
int compare(sort_t a, sort_t b) {
    int x = *(int*)a, y = *(int*)b;
    if (x < y) return -1;
    else if (x > y) return 1;
    else return 0;
}

int main() {
    int n = sizeof(a) / sizeof(int);
    cout << "Unsorted: ";
    for (int i = 0; i < n; i++) cout << a[i] << " ";
    cout << endl;

    //对a排序
    qsort((void*)a, n, sizeof(int), compare);

    cout << "Sorted: ";
    for (int i = 0; i < n; i++) cout << a[i] << " ";
    cout << endl;

    //二分查找11的位置
    int key = 11;
    const void* p = bsearch((sort_t)&key, (sort_t)a, n, sizeof(int), compare);
    // 11不在数组中
    if (p == NULL) cout << "There are no 11 in the array" << endl;
    // 输出11的索引
    else cout << "The index of 11 in the array is " << ((int*)p - a) << endl;
    return 0;
}

输出:

std::sort

头文件:algorithm

声明

template<typename RandomAccessIterator, typename Compare>
inline void std::sort(RandomAccessIterator first, RandomAccessIterator last, 
                      Compare comp);
template<typename RandomAccessIterator, typename Compare>
inline void std::sort(RandomAccessIterator first, RandomAccessIterator last);

用法

// T是数组的数据类型
//对数组a排序(数组长度为n)
std::sort(a,a+n);  //升序
std::sort(a,a+n,std::greater<T>());  //降序
std::sort(a,a+n,compare);  //自定义比较函数,写法如下

bool compare(T a, T b){
    return xxx;  //在此规则中,a"小于"b的判断
}

//对vector排序
std::sort(std::begin(v), std::end(v), [compare]);

实例

#include<iostream>
#include<algorithm>
using namespace std;

struct seg {
    int a, b;
} a[100];

bool cmp(seg a, seg b) {
    return a.a < b.a;  //按a升序排序
}

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) cin >> a[i].a >> a[i].b;
    sort(a, a + n, cmp);
    cout << endl;
    cout << "sorted:" << endl;
    for (int i = 0; i < n; i++) cout << a[i].a << " " << a[i].b << endl;

    return 0;
}

 

 std::stable_sort

std::sort是不稳定的(相同元素的相对位置在排序前后可能变化)

那STL中有稳定的排序吗?就是std::stable_sort

用法

和std::sort一样,就是函数名字差别

实例

#include<iostream>
#include<algorithm>
using namespace std;

struct seg {
    int a, b;
} a[100];

bool cmp(seg a, seg b) {
    return a.a < b.a;  //按a升序排序
}

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) cin >> a[i].a >> a[i].b;
    stable_sort(a, a + n, cmp);
    cout << endl;
    cout << "sorted:" << endl;
    for (int i = 0; i < n; i++) cout << a[i].a << " " << a[i].b << endl;

    return 0;
}

STL中除了上述对整个序列排序的函数外,还有其他排序相关函数,敬请期待下一篇 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值