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

2204 字符串连接

时间:2020-03-09 13:27:12      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:程序   enter   bool   字符串连接   void   应该   string   c++   ref   

2204 字符串连接

注意

下面这种做法是错误的,因为

/*
4
ba
b
bc
bb
这种样例应该输出babbbbc
而程序缺输出了bbabbbc
这是因为set集合的确是按字典序来排的,但按字典序来排并不是这道题的正解。
*/


#include<bits/stdc++.h>
using namespace std;
set<string> s; 
int main(void){
    int n;
    cin >> n;
    for(int i = 1; i <= n; i++){
        string t;
        cin >> t;
        s.insert(t);
    }
    set<string> :: iterator it;
    for(it = s.begin(); it != s.end(); it++){
        cout<<*it;
    }
    cout<<endl;
    return 0;
} 

正确做法

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3+10;
string s[maxn];
bool cmp(string s,string t){
    return s+t < t+s;
}
int main(void){
    int n;
    cin >> n;
    for(int i = 0; i < n; i++) cin >> s[i]; 
    sort(s,s+n,cmp);
    for(int i = 0; i < n; i++) cout<<s[i];
    cout<<endl;
    return 0;
} 

2204 字符串连接

标签:程序   enter   bool   字符串连接   void   应该   string   c++   ref   

原文地址:https://www.cnblogs.com/AC-AC/p/12448144.html

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