#include <iostream>
#include <string.h>
using namespace std;
int main()
{
int n;
cin >> n;
char s[1001][101];
for (int i = 0; i < n; i++)
{
cin >> s[i];
}
cout << endl;
char temp[101];
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
{
if (strcmp(s[j], s[j + 1]) > 0)
{
strcpy(temp, s[j]);
strcpy(s[j], s[j + 1]);
strcpy(s[j + 1], temp);
}
}
for (int i = 0; i < n; i++)
{
cout << s[i] << endl;
}
return 0;
}
这段代码及给的测试用例在VS2019上能够运行通过,但是在网页的在线编译器上,输出时,总把最后一个字符串给漏掉,很奇怪。这段代码算是暴力直观的解法,还可以使用更为简单的做法:
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
bool cmp(string a, string b)
{
return a < b;
}
int main()
{
int n;
cin >> n;
vector<string> strs;
string str;
for (int i = 0; i < n; ++i) {
cin >> str;
strs.push_back(str);
}
cout << endl;
sort(strs.begin(), strs.end(), cmp);
for (int i = 0; i < n; ++i) {
cout << strs[i] << endl;
}
return 0;
}
利用vector和sort函数解决问题更加方便。