#include<iostream> #include<string> using namespace std; char *reverse1( char *str, int len) { if(len<=1) //边界条件 return str; char temp = *str; *str = *(str+len-1); *(str+len-1) = temp; return (reverse1( str+1, len-2)-1); } char *reverse2( const char *str) { char *temp = new char[strlen(str)+1]; strcpy(temp, str); //会复制\0 int len = strlen(str); for( int i=0; i<len/2; i++) { char ch = temp[i]; temp[i] = temp[len-i-1]; temp[len-i-1] = ch; } // temp[len] = '\0'; return temp; } char *reverse3( const char *str) { char *temp = new char[strlen(str)+1]; strcpy(temp, str); int len = strlen(str); char *head = temp; char *rear = temp+len-1; while(head<rear) { char ch = *head; *head = *rear; *rear = ch; ++head; --rear; } // temp[len] = '\0'; return temp; } char *reverse4( const char *str) { char *temp = new char[strlen(str)+1]; strcpy(temp, str); int len = strlen(str); char *head = temp; char *rear = temp+len-1; while(head<rear) { *head = *head+*rear; *rear = *head-*rear; *head = *head-*rear; ++head; --rear; } return temp; } char *reverse5( const char *str) { char *temp = new char[strlen(str)+1]; strcpy(temp, str); int len = strlen(str); char *head = temp; char *rear = temp+len-1; while(head<rear) { *head^=*rear; *rear^=*head; *head^=*rear; ++head; --rear; } return temp; } int main() { char str[7] = "123456"; cout<<reverse2(str)<<endl; cout<<reverse3(str)<<endl; cout<<reverse4(str)<<endl; cout<<reverse5(str)<<endl; cout<<reverse1(str, 6)<<endl; return 0; }
字符串的反转五种方法
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
下一篇:第1章第3节 线性表的比較
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
8种超简单的Golang生成随机字符串方式
go语言中,有没有什么最快最简单的方法,用来生成只包含英文字母的随机字符串。
go语言 Bytes Golang -
Python 实现字符串反转的四种方法
介绍Python中反转字符串的4种方法,找回数也可以用这个方法。
Python 回数 字符串反转