C++STL去实现字符串翻转
时间: 2023-06-06 18:05:27 浏览: 139
字符串反转(用c++实现)
5星 · 资源好评率100%
可以使用STL中的reverse函数实现字符串翻转,具体代码如下:
```cpp
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
string str = "Hello, world!";
reverse(str.begin(), str.end());
cout << str << endl;
return 0;
}
```
输出结果为:"!dlrow ,olleH"。
阅读全文