
//扭转一个STL字符串
#include <string>
#include <iostream>
#include <algorithm>
int main() {
using namespace std;
string strSample("Hello String! We will reverse you!");
cout << "The original sample string is: " << endl;
cout << strSample << endl << endl;
reverse(strSample.begin(), strSample.end());
cout << "After applying the std::reverse algorithm: " << endl;
cout << strSample;
return 0;
}



