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

ex10_4字符串中字符排序

时间:2017-12-02 11:12:35      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:int   pre   string   begin   const   最好   argc   stream   .cpp   

 

//
//  main.cpp
//  ex10_4
//
//  Created by a007 on 17/12/1.
//  Copyright ? 2017年 a007. All rights reserved.
//

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

int main(int argc, const char * argv[]) {
    string s;
    cout << "Enter a string s: ";
    cin >> s;
    
    sort(begin(s), end(s));
    cout << s << endl;
    return 0;
}

 这段程序偷懒用了标准算法库函数sort,不过最好还是自己手工实现一遍,加深理解。

ex10_4字符串中字符排序

标签:int   pre   string   begin   const   最好   argc   stream   .cpp   

原文地址:http://www.cnblogs.com/mocuishle/p/7944969.html

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