-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem5.cpp
More file actions
73 lines (73 loc) · 1.47 KB
/
problem5.cpp
File metadata and controls
73 lines (73 loc) · 1.47 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
63
64
65
66
67
68
69
70
71
72
73
#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{};
char *array{};
public :
stack(int size):
size(size),top(-1){
array=new char [size];
}
int isfull(){
return top==size-1;
}
bool empty(){
return top==-1;
}
void display(){
for(int i=top;i>=0;i--)cout<<array[i];
cout<<endl;
}
void push(char ele){
if(top==size-1)return;
array[++top]=ele;
}
char pop(){
if(top==-1);
else return array[top--];
}
char 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.empty()){
ans+=st.peek();
st.pop();
}
ans+=" ";
}
else st.push(line[i]);
}
return ans;
};
string remove_all_adjacent_duplicates(string s){
stack st(s.length());
for(int i=0;i<s.length();i++){
if(!st.empty()&&st.peek()==s[i]){
st.pop();continue;}
st.push(s[i]);
}
string ans;
while(!st.empty()){ans+=st.peek(),st.pop();}
return reverse_subwords(ans);
};
int main(){
cout<<remove_all_adjacent_duplicates("abbaca");
}