[Leetcode]反转字符串中的单词 III
题目
代码
class Solution {
public:
string reverseWords(string s) {
for(int i=0,j=0;j<=s.size();j++)
{
if(j==s.size()||s[j]==' ')
{
reverse(s.begin()+i,s.begin()+j);
i=j+1;
}
}
return s;
}
};
https://github.com/li-zheng-hao