leetcode题库——反转字符串中的单词III

版权声明: https://blog.csdn.net/Dorothy_Xue/article/details/84553090

无脑方法做简单题,待我以后优化。。。

题目描述:

给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。

示例 1:

输入: "Let's take LeetCode contest"
输出: "s'teL ekat edoCteeL tsetnoc" 

注意:在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。

方法:

class Solution {
public:
    string reverseWords(string s) {
        string str="";
        int a=0;
        for(int i=0;i<s.size();i++){
            if(s[i]==' '){
                for(int j=i-1;j>=a;j--)
                    str=str+s[j];
                str=str+' ';
                a=i+1;
            }
            if(i==s.size()-1)
                for(int j=i;j>=a;j--)
                    str=str+s[j];
        }
        return str;
    }
};

猜你喜欢

转载自blog.csdn.net/Dorothy_Xue/article/details/84553090