sort排序string
时间: 2023-11-19 10:06:16 浏览: 102
Sort排序
5星 · 资源好评率100%
好的,针对您的问题,我可以给出以下代码示例:
```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` 函数对字符串进行排序,需要注意的是,字符串的排序是按照字符的 ASCII 码值进行排序的。
阅读全文