码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 10905 Children's Game

时间:2014-08-28 12:53:09      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   for   art   

注意!这不是单纯的字典序排序,比如90、9,应该是990最大

对字符串排序蛋疼了好久,因为别人说string很慢,所以一直没有用过。

看别人用string还是比较方便的,学习一下

对了,这里的cmp函数写的还是很简洁的,比我写的要好得多

 

bubuko.com,布布扣
 1 #define LOCAL
 2 #include <iostream>
 3 #include <cstdio>
 4 #include <cstring>
 5 #include <algorithm>
 6 using namespace std;
 7 
 8 bool cmp(const string &a, const string &b)
 9 {
10     return (a + b > b + a);
11 }
12 
13 int main(void)
14 {
15     #ifdef LOCAL
16         freopen("10905in.txt", "r", stdin);
17     #endif
18 
19     int n;
20     string str[52];
21     while(cin >> n && n)
22     {
23         for(int i = 0; i < n; ++i)
24             cin >> str[i];
25         sort(str, str + n, cmp);
26         for(int i = 0; i < n; ++i)
27             cout << str[i];
28         cout << endl;
29     }
30     return 0;
31 }
代码君

 

UVa 10905 Children's Game

标签:style   blog   http   color   os   io   ar   for   art   

原文地址:http://www.cnblogs.com/AOQNRMGYXLMV/p/3941265.html

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