c++sort string
时间: 2023-11-11 11:56:49 浏览: 161
C++中的sort函数可以用来对给定区间的元素进行排序。在C++中,使用sort函数对字符串数组进行排序的方法如下所示:
1. 引入头文件和命名空间:
```cpp
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
```
2. 编写排序函数:
```cpp
void sort_string(string* in_array, int n, string* out_array) {
vector<string> strArray;
for (int i = 0; i < n; i++) {
strArray.push_back(in_array[i]);
}
sort(strArray.begin(), strArray.end());
vector<string>::iterator st;
int j = 0;
for (st = strArray.begin(); st != strArray.end(); st++) {
out_array[j] = *st;
j++;
}
}
```
3. 调用排序函数并输出结果:
```cpp
int main() {
string str[4] = { "hello, world!", "welcome to cpp.", "effective c++", "exceptional c++" };
string str_out[4];
sort_string(str, 4, str_out);
for (int j = 0; j < 4; j++) {
cout << str_out[j] << endl;
}
}
```
以上代码中,首先将字符串数组转换为vector容器,然后使用sort函数对容器进行排序,最后将排序后的结果存入输出数组中并输出。
阅读全文