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

49. 字符大小写排序

时间:2018-01-21 10:58:29      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:tco   排序   ret   gpo   扫描   color   lint   zh-cn   ref   

样例

给出"abAcD",一个可能的答案为"acbAD"

挑战 

在原地扫描一遍完成

 

上一个无脑解

static bool cmp(const char &a, const char &b)  
{    
     return (int)a>(int)b;  
}  

void sortLetters(string &chars) {
     sort(chars.begin(), chars.end(), cmp);
}

 

49. 字符大小写排序

标签:tco   排序   ret   gpo   扫描   color   lint   zh-cn   ref   

原文地址:https://www.cnblogs.com/TheLaughingMan/p/8322479.html

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