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中除了上述对整个序列排序的函数外,还有其他排序相关函数,敬请期待下一篇