码迷,mamicode.com
首页 > 其他好文 > 详细

笔试的一道题(字符串反转poj3750)

时间:2014-10-14 00:25:57      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:京东笔试

#include <iostream>
#include <string>

using namespace std;
string str;
void reverse(int begin,int end)
{
    while(begin<end)
    {
        str[begin] = str[begin]^str[end];
        str[end] = str[begin]^str[end];
        str[begin] = str[begin]^str[end];
        begin++;
        end--;
    }
}
int main()
{
    int i,j;
    while(getline(cin,str))
    {
        int len = str.length();
        int begin,end;
        i = 0;
        while(i<len)
        {
            begin = i;
            while(i<len&&str[i]!=' ')
                i++;
            end = i-1;
            reverse(begin,end);
            i++;
        }
        reverse(0,len-1);
        cout << str << endl;
    }
    cout << "Hello world!" << endl;
    return 0;
}


例如:I am zhang san.   输出:san. zhang am I;


笔试的一道题(字符串反转poj3750)

标签:京东笔试

原文地址:http://blog.csdn.net/u010700335/article/details/40053713

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!