-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReverse_Word_in_String.cpp
81 lines (70 loc) · 1.58 KB
/
Reverse_Word_in_String.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
https://practice.geeksforgeeks.org/problems/reverse-words-in-a-given-string5459/1
Input:
S = i.like.this.program.very.much
Output: much.very.program.this.like.i
Explanation: After reversing the whole
string(not individual words), the input
string becomes
much.very.program.this.like.
Input:
S = pqr.mno
Output: mno.pqr
Explanation: After reversing the whole
string , the input string becomes
mno.pqr
*/
string reverseWords(string s)
{
// code here
reverse(s.begin(),s.end());
int i=0;
string st;
vector<string>ans;
string ans1="";
int j=s.length();
string t;
while(s[j]!='.') // only push when "." occur so 1st word Not pushed .
{
t=t+s[j];
j--;
}
while(i!=s.length()+1)
{
if(s[i]=='.')
{
reverse(st.begin(),st.end()); //reverse of reverse
ans.push_back(st);
ans.push_back('.');
st="";
}
else
{
st=st+s[i];
}
i++;
}
for(auto i:ans)
{
ans1=ans1+i;
}
return ans1+t;
}
// https://leetcode.com/problems/reverse-words-in-a-string
string reverseWords(string s) {
stringstream ss(s);
string word;
vector<string>v;
while(ss>>word)
{
v.push_back(word);
v.push_back(" ");
}
v.pop_back();
reverse(v.begin(),v.end());
string ans;
for(auto i:v)
{
ans=ans+i;
}
return ans;