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

对字符串进行排序,学会使用仿函数

时间:2015-05-19 10:36:38      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

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

bool myCompare(char a, char b)
{
    return a>b;
}

struct myCompare2
{
    bool operator()(char a, char b)
    {
        return a>b;
    }
};

int main()
{
    string str("couragekshaojie");
//    sort(str.begin(), str.end(), myCompare);
    sort(str.begin(), str.end(), myCompare2());
    printf("%s\n", str.c_str());

    return 0;
}

对字符串进行排序,学会使用仿函数

标签:

原文地址:http://blog.csdn.net/u011487593/article/details/45840909

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