classSolution{public:stringreverseWords(strings){reverse(begin(s),end(s));// Reverse the whole stringreverseWords(s,s.length());// Reverse each wordreturncleanSpaces(s,s.length());// Clean up spaces}private:voidreverseWords(string&s,intn){inti=0;intj=0;while(i<n){while(i<j||i<n&&s[i]==' ')// Skip spaces++i;while(j<i||j<n&&s[j]!=' ')// Skip non spaces++j;reverse(begin(s)+i,begin(s)+j);// Reverse the word}}// Trim leading, trailing, and middle spacesstringcleanSpaces(string&s,intn){inti=0;intj=0;while(j<n){while(j<n&&s[j]==' ')// Skip spaces++j;while(j<n&&s[j]!=' ')// Keep non spacess[i++]=s[j++];while(j<n&&s[j]==' ')// Skip spaces++j;if(j<n)// Keep only one spaces[i++]=' ';}returns.substr(0,i);}};
classSolution{publicStringreverseWords(Strings){StringBuildersb=newStringBuilder(s).reverse();// Reverse the whole stringreverseWords(sb,sb.length());// Reverse each wordreturncleanSpaces(sb,sb.length());// Clean up spaces}privatevoidreverseWords(StringBuildersb,intn){inti=0;intj=0;while(i<n){while(i<j||i<n&&sb.charAt(i)==' ')// Skip spaces++i;while(j<i||j<n&&sb.charAt(j)!=' ')// Skip non spaces++j;reverse(sb,i,j-1);// Reverse the word}}// Trim leading, trailing, and middle spacesprivateStringcleanSpaces(StringBuildersb,intn){inti=0;intj=0;while(j<n){while(j<n&&sb.charAt(j)==' ')// Skip spaces++j;while(j<n&&sb.charAt(j)!=' ')// Keep non spacessb.setCharAt(i++,sb.charAt(j++));while(j<n&&sb.charAt(j)==' ')// Skip spaces++j;if(j<n)// Keep only one spacesb.setCharAt(i++,' ');}returnsb.substring(0,i).toString();}privatevoidreverse(StringBuildersb,intl,intr){while(l<r){finalchartemp=sb.charAt(l);sb.setCharAt(l++,sb.charAt(r));sb.setCharAt(r--,temp);}}}