码迷,mamicode.com
首页 > 编程语言 > 详细

qsort 与sort 对结构体排序实例

时间:2020-02-23 18:14:33      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:type   结构体排序   auto   str   sizeof   ace   int   space   void   

qsort 与sort 对结构体排序实例

#include<bits/stdc++.h>
using namespace std;

typedef struct {
    string book;
    int num;
}Book;

//qsort的比较函数
int cmp(const void * a, const void * b) {
    return (*(Book*)a).num > (*(Book*)b).num ? 1 : 0;
}

//sort的比较函数
bool cmp_(Book a, Book b) {
    return a.num > b.num;
}


int main() {
    Book Bok[3] = { {"1",4},{"2",2},{"3",3} };


    cout << endl << "----------------" << "qsort函数" << endl;
    qsort(Bok, 3, sizeof(Bok[0]),cmp);

    for (auto i : Bok) {
        cout << i.num << endl;
    }

    cout << "----------------" << "sort函数" << endl;
    sort(Bok, Bok + 3, cmp_);

    for (auto i : Bok) {
        cout << i.num << endl;
    }

    return 0;
}

qsort 与sort 对结构体排序实例

标签:type   结构体排序   auto   str   sizeof   ace   int   space   void   

原文地址:https://www.cnblogs.com/Kanna/p/12350603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!