这里指的字符串有两种:
char字符串:char ch[]
调用头文件string.h,C++中是cstring,然后使用函数strrev(ch)。
另外一种方法:调用头文件algorithm,使用函数reverse(ch,ch + n)。其中n为需要倒置的长度。
string类:string s
通用方法:
函数是:
voidReverse(char*ch,intn)//这里的n是字符串长度,char类型 { inti,j; for(i=0,j=n-1;i<j;i++,j--) { inttemp=ch[i]; ch[i]=ch[j]; ch[j]=temp; } }原文链接:https://www.f2er.com/javaschema/284315.html