chore(CPlusPlus): add reverse the string wordwise (#1100)

pull/1105/head
RK-Shandilya 2022-12-14 23:56:00 +05:30 committed by GitHub
parent e60d299077
commit 6620f32d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 0 deletions

View File

@ -136,6 +136,7 @@
- [Longest common prefix](Strings/longest-common-prefix.cpp)
- [First unique character in the string](Strings/first-unique-character.cpp)
- [Sliding Window to match target string](Strings/sliding-window.cpp)
- [Reverse String Wordwise](Strings/ReverseTheStringWordwise.cpp)
## Trees

View File

@ -0,0 +1,48 @@
// Description :- Given a string, the task is to reverse the order of the words in the given string.
// Example :-
// Input 1:
// A = "the sky is blue"
// Input 2:
// A = "this is ib"
// Output 1:
// "blue is sky the"
// Output 2:
// "ib is this"
// Time Complexity = O(N), Space Complexity = O(N)
#include<bits/stdc++.h>
using namespace std;
string solve(string s) {
vector<string>v;
string str="";
for(int i=0;i<s.length();i++){
if(s[i]!=' '){
str+=s[i];
}
else if(str!="" && s[i]==' '){
v.push_back(str);
str="";
}
}
if(str!=""){
v.push_back(str);
}
str="";
for(int i=v.size()-1;i>0;i--){
str+=v[i];
str+=' ';
}
str+=v[0];
return str;
}
int main()
{
string s;
getline(cin, s);
cout<<solve(s);
return 0;
}