C++字符串反转方法
时间: 2023-08-04 20:19:43 浏览: 126
C++反转字符串
可以使用C++的标准库函数`reverse()`来反转字符串。以下是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str = "hello world";
reverse(str.begin(), str.end()); // 使用reverse()函数
cout << str << endl; // 输出反转后的字符串
return 0;
}
```
运行结果为:
```
dlrow olleh
```
阅读全文