题解 | #翻转单词#简单易懂(菜鸟版)
翻转单词
https://www.nowcoder.com/practice/aa7e93b78b294a859bb52d5b965aaaf1?tpId=196&tqId=40403&rp=1&ru=/exam/oj&qru=/exam/oj&sourceUrl=%2Fexam%2Foj&difficulty=undefined&judgeStatus=undefined&tags=595&title=
本菜鸟的菜鸟解法,希望各位大佬不要嫌弃😭😭😭
class Solution { public: string reverseWord(string str) { // write code here str+=" ";//字符串后加一个空格,减少判断难度; string a="",b="";//定义a用来临时记录每一个单词,b记录最后的字符串; int n=str.size(); for(int i=0;i<n;i++){ if(str[i]!=' '){ a+=str[i];//如果不是空格则增加a字符串; } else{ reverse(a.begin(),a.end());//反转a字符串(reverse函数反转字符串); b+=a;//增加b字符串; if(i!=n-1){ b+=" ";//如果不为字符串中最后一个单词则增加空格; } a="";//清空a字符串; } } return b; } };