c++中字符串的反转
c++中字符串的反转
1.对于用char定义的字符串:使用string.h中的strrev函数
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char s[]="123456";//不能是string类型;
strrev(s);
cout<<s<<endl;
return 0;
}
2.对于string类型的:使用algorithm中的reverse函数
#include<iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
string s[]="123456";
reverse(s.begin(),s.end());
cout<<s<<endl;
return 0;
}
因上求缘,果上努力~~~~ 作者:图神经网络,转载请注明原文链接:https://www.cnblogs.com/BlairGrowing/p/13523904.html