首页 > 学院 > 开发设计 > 正文

1038.Recover the Smallest Number (30)

2019-11-10 17:54:55
字体:
来源:转载
供稿:网友

1038.Recover the Smallest Number (30)

pat-al-1038

2017-02-08

参考了:1038. Recover the Smallest Number (30)-PAT甲级真题string中erase的用法:C++中string erase函数的使用(转载)/** * pat-al-1038 * 2017-02-08 * Cpp version * Author: fengLian_s */#include<string>#include<iostream>#include<algorithm>using namespace std;bool cmp(string a, string b){ return a+b < b+a;}int main(){ freopen("in.txt", "r", stdin); int n; scanf("%d", &n); string str[10002]; for(int i = 0;i < n;i++) { cin >> str[i]; } sort(str, str+n, cmp); string s; for(int i = 0;i < n;i++) { s += str[i]; } while(s.length() != 0 && s[0] == '0') s.erase(s.begin()); if(s.length() == 0) cout << 0; else cout << s; putchar('/n');}

-FIN-


上一篇:ArrayList源码解析(下)

下一篇:RMQ算法

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表