-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDeque.java
213 lines (174 loc) · 5.84 KB
/
Deque.java
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// Implementation of Deque using circular array
// Deque or Double Ended Queue is a generalized version of
// Queue data structure that allows insert and delete at both ends.
// Operations on Deque:
// Mainly the following four basic operations are performed on queue:
// insetFront(): Adds an item at the front of Deque.
// insertRear(): Adds an item at the rear of Deque.
// deleteFront(): Deletes an item from front of Deque.
// deleteRear(): Deletes an item from rear of Deque.
// In addition to above operations, following operations are also supported
// getFront(): Gets the front item from queue.
// getRear(): Gets the last item from queue.
// isEmpty(): Checks whether Deque is empty or not.
// isFull(): Checks whether Deque is full or not.
// Insert Elements at Rear end
// a). First we check deque if Full or Not
// b). IF Rear == Size-1
// then reinitialize Rear = 0 ;
// Else increment Rear by '1'
// and push current key into Arr[ rear ] = key
// Front remain same.
// Insert Elements at Front end
// a). First we check deque if Full or Not
// b). IF Front == 0 || initial position, move Front
// to points last index of array
// front = size - 1
// Else decremented front by '1' and push
// current key into Arr[ Front] = key
// Rear remain same.
// Delete Element From Rear end
// a). first Check deque is Empty or Not
// b). If deque has only one element
// front = -1 ; rear =-1 ;
// Else IF Rear points to the first index of array
// it's means we have to move rear to points
// last index [ now first inserted element at
// front end become rear end ]
// rear = size-1 ;
// Else || decrease rear by '1'
// rear = rear-1;
// Delete Element From Front end
// a). first Check deque is Empty or Not
// b). If deque has only one element
// front = -1 ; rear =-1 ;
// Else IF front points to the last index of the array
// it's means we have no more elements in array so
// we move front to points first index of array
// front = 0 ;
// Else || increment Front by '1'
// front = front+1;
class Deque{
static int final MAX = 100;
int array[];
int front;
int rear;
int size;
public Deque(int size){
array = new int[MAX];
front = -1;
rear = 0;
this.size = size;
}
boolean isFull(){
return ((front == 0 && rear == size-1) || front == rear+1);
}
boolean isEmpty (){
return (front == -1);
}
void insertfront(int key){
// check whether Deque is full or not
if (isFull()){
System.out.println("Overflow");
return;
}
// If queue is initially empty
if (front == -1){
front = 0;
rear = 0;
}
// front is at first position of queue
else if (front == 0)
front = size - 1 ;
else // decrement front end by '1'
front = front - 1;
// insert current element into Deque
array[front] = key;
}
void insertrear(int key){
if (isFull()){
System.out.println(" Overflow ");
return;
}
// If queue is initially empty
if (front == -1){
front = 0;
rear = 0;
}
// rear is at last position of queue
else if (rear == size-1)
rear = 0;
// increment rear end by '1'
else
rear++;
// insert current element into Deque
array[rear] = key ;
}
void deletefront(){
// check whether Deque is empty or not
if (isEmpty()){
System.out.println("Queue Underflow\n");
return ;
}
// Deque has only one element
if (front == rear){
front = -1;
rear = -1;
}
else
// back to initial position
if (front == size -1)
front = 0;
else // increment front by '1' to remove current
// front value from Deque
front = front + 1;
}
void deleterear(){
if (isEmpty()){
System.out.println(" Underflow");
return ;
}
// Deque has only one element
if (front == rear){
front = -1;
rear = -1;
}
else if (rear == 0)
rear = size - 1;
else
rear = rear - 1;
}
// Returns front element of Deque
int getFront(){
// check whether Deque is empty or not
if (isEmpty()){
System.out.println(" Underflow");
return -1 ;
}
return array[front];
}
// function return rear element of Deque
int getRear(){
// check whether Deque is empty or not
if(isEmpty() || rear < 0){
System.out.println(" Underflow\n");
return -1 ;
}
return array[rear];
}
public static void main(String[] args){
Deque d = new Deque(5);
System.out.println("Insert element at rear end : 5 ");
d.insertrear(5);
System.out.println("insert element at rear end : 10 ");
d.insertrear(10);
System.out.println("get rear element : "+ d.getRear());
d.deleterear();
System.out.println("After delete rear element new rear becomes : " + d.getRear());
System.out.println("inserting element at front end");
d.insertfront(15);
System.out.println("get front element: " + d.getFront());
d.deletefront();
System.out.println("After delete front element new front becomes : " + d.getFront());
}
}