c++字符串从小到大排序
时间: 2023-10-15 19:02:44 浏览: 92
从小到大排序的程序 c++
可以使用 STL 中的 `sort` 函数对字符串进行从小到大排序。例如:
```c++
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
string s = "cba";
sort(s.begin(), s.end());
cout << s << endl; // 输出 abc
return 0;
}
```
在这个例子中,我们使用 `sort` 函数对字符串 `s` 进行排序,函数的参数是字符串的起始地址和结束地址,即 `s.begin()` 和 `s.end()`。排序后,字符串 `s` 的内容变为从小到大排列的字符序列。
阅读全文