首页 > 其他 > 详细

2.字符串翻转

时间:2015-09-01 23:57:23      阅读:479      评论:0      收藏:0      [点我收藏+]

思路很重要:

获取字符串长度,两头交换相应字符。

核心代码:

 1 void swap(char &x,char &y)
 2 {
 3     x = x^y;
 4     y = x^y;
 5     x = x^y;
 6 }
 7 void reverse(char *s)
 8 {
 9     int i = 0;
10     int len = strlen(s);
11     for(i = 0;i < len/2; ++i)
12         swap(s[i],s[len-i-1]);
13 }

示例代码:

技术分享
 1 #include <cstring>
 2 #include <iostream>
 3 using namespace std;
 4 void swap(char &x,char &y)
 5 {
 6     x = x^y;
 7     y = x^y;
 8     x = x^y;
 9 }
10 void reverse(char *s)
11 {
12     int i = 0;
13     int len = strlen(s);
14     for(i = 0;i < len/2; ++i)
15         swap(s[i],s[len-i-1]);
16 }
17 int main()
18 {
19     char str[20] = "hello,world";
20     reverse(str);
21     cout<<str<<endl;
22 }
View Code

 

2.字符串翻转

原文:http://www.cnblogs.com/sxmcACM/p/4776989.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!