Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
chore(CPlusPlus): add reverse the string wordwise (#1100)
Browse files Browse the repository at this point in the history
  • Loading branch information
RK-Shandilya authored Dec 14, 2022
1 parent e60d299 commit 6620f32
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions algorithms/CPlusPlus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
48 changes: 48 additions & 0 deletions algorithms/CPlusPlus/Strings/ReverseTheStringWordwise.cpp
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 6620f32

Please sign in to comment.