. C++题目52:按名字长度对英文名字进行排序 输入5个英文人名,对人名进行排序输出(名字长度,如果长度相同,按照字典序,升序)。
时间: 2024-03-18 11:42:23 浏览: 172
C++版按姓名排序的函数算法
5星 · 资源好评率100%
好的,这是一个简单的排序题目,可以使用C++的STL库中的sort函数来实现。以下是示例代码:
```cpp
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
bool cmp(string a, string b) {
if (a.length() == b.length()) {
return a < b;
}
return a.length() < b.length();
}
int main() {
string names[5];
for (int i = 0; i < 5; i++) {
cin >> names[i];
}
sort(names, names + 5, cmp);
for (int i = 0; i < 5; i++) {
cout << names[i] << endl;
}
return 0;
}
```
在这个程序中,我们首先定义了一个名为`cmp`的比较函数,用于排序时比较两个字符串的长度和字典序。然后我们使用一个`for`循环来读入5个英文人名,并使用`sort`函数对这5个人名进行排序。最后我们再使用一个`for`循环输出排序后的结果。
希望这个答案能够帮到你!
阅读全文