c++,用vector对英文名字进行排序 输入5个英文人名,对人名进行排序输出(字典序,升序)。
时间: 2024-03-02 19:50:08 浏览: 84
C++版按姓名排序的函数算法
5星 · 资源好评率100%
好的,以下是使用 `vector` 实现该功能的 C++ 代码:
```cpp
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
int main() {
const int n = 5;
vector<string> names(n);
// 输入人名
cout << "请输入" << n << "个英文人名:" << endl;
for (int i = 0; i < n; i++) {
getline(cin, names[i]);
}
// 按字典序排序
sort(names.begin(), names.end());
// 输出排序结果
cout << "排序后的结果为:" << endl;
for (int i = 0; i < n; i++) {
cout << names[i] << endl;
}
return 0;
}
```
代码中,我们使用 `vector<string>` 来存储输入的人名,通过循环和 `getline` 函数实现输入,`sort` 函数实现按字典序排序,最后通过循环输出排序结果。需要注意的是,对于 `vector`,我们需要使用 `begin()` 和 `end()` 函数表示其首尾迭代器。
阅读全文