2204 字符串连接

Posted ac-ac

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2204 字符串连接相关的知识,希望对你有一定的参考价值。

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 字符串连接的主要内容,如果未能解决你的问题,请参考以下文章

布局膨胀错误片段

这些角度电子邮件指令代码片段如何连接

Vscode 片段变量

在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串

替换的片段在背景上仍然可见

在Pandoc lua过滤器中连接字符串片段