字串的連接配接最長路徑查找
題目描述
給定n個字元串,請對n個字元串按照字典序排列。
輸入描述:
輸入第一行為一個正整數n(1≤n≤1000),下面n行為n個字元串(字元串長度≤100),字元串中隻含有大小寫字母。
輸出描述:
資料輸出n行,輸出結果為按照字典序排列的字元串。
輸入例子:
9
cap
to
cat
card
two
too
up
boat
boot
輸出例子:
boat
boot
cap
card
cat
to
too
two
up
解答代碼:
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<set>
#include<vector>
using namespace std;
bool com(const string s1,const string s2)
{
return s1 < s2;
}
int main()
{
int n,i;
vector<string> v;
string ss;
while(cin>>n)
{
v.clear();
for(i=0; i<n; i++)
{
cin>>ss;
v.push_back(ss);
}
sort(v.begin(),v.end(),com);
for(i=0; i<v.size(); i++)
{
cout<<v[i]<<endl;
}
}
}