-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem2.cpp
More file actions
62 lines (62 loc) · 1.19 KB
/
problem2.cpp
File metadata and controls
62 lines (62 loc) · 1.19 KB
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
#include <iostream>
#include <iomanip>
#include <cmath>
#include <numeric>
//#include<bits/stdc++.h>
#include <string>
#include <cassert>
using namespace std;
#define endl '\n'
//#define haha cin.tie(0), cout.tie(0), cin.sync_with_stdio(0), cout.sync_with_stdio(0);
#define ll long long
class stack{
private:
int size{};
int top{};
int *array{};
public :
stack(int size):
size(size),top(-1){
array=new int [size];
}
int isfull(){
return top==size-1;
}
bool isempty(){
return top==-1;
}
void display(){
for(int i=top;i>=0;i--)cout<<array[i]<<" ";
cout<<endl;
}
void push(int ele){
if(top==size-1)return;
array[++top]=ele;
}
int pop(){
if(top==-1);
else return array[top--];
}
int peek(){
if(top==-1);
else return array[top];
}
};
string reverse_subwords(string line){
stack st(line.length());
string ans;
for(int i=0;i<=line.length();i++){
if(i==line.length()||line[i]==' '){
while(!st.isempty()){
ans+=st.peek();
st.pop();
}
ans+=" ";
}
else st.push(line[i]);
}
return ans;
};
int main(){
cout<<reverse_subwords("abc d efg xy");
}