-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem7.cpp
More file actions
65 lines (65 loc) · 1.38 KB
/
problem7.cpp
File metadata and controls
65 lines (65 loc) · 1.38 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
#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 empty(){
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];
}
};
void asteroid_collision(int arr[],int size){
stack stp(size),stn(size);
for(int i=0;i<size;i++){
if(arr[i]<0){
if(!stp.empty()){
if(stp.peek()>-arr[i])continue;
else if(stp.peek()==-arr[i]){stp.pop(),size--;continue;}
else stp.pop(),size--,i--;
}
else stn.push(arr[i]);
}
else stp.push(arr[i]);
}
while(!stp.empty())cout<<stp.peek()<<" ",stp.pop();
while(!stn.empty())cout<<stn.peek()<<" ",stn.pop();
cout<<endl;
};
int main(){
int arr[4] {-1,-2,1,2};
asteroid_collision(arr,4);
}