-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataStructures.java
465 lines (326 loc) · 9 KB
/
dataStructures.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
class Stack{
int stack[] = new int[2]; //Default size of the stack.
int top = -1;
int size = 2; // Size of the stack.
/*
This method is used to push or insert new element into the stack.
The Size of stack will expand if the stack is already full
*/
public int push(int element){
if(top == size -1 ){
expand();
}
top++;
stack[top] = element;
System.out.println("Element pushed at " + top);
return top - 1; // Index at which the element is inserted!!
}
/*
This method is used to pop or delete an element into the stack.
The Size of stack will shrink if the size is much larger than what is required.
*/
public int pop(){
if(isEmpty()){
System.out.println("Stack Underflow!");
return -1;
}
int element = stack[top];
stack[top] = 0;
top--;
System.out.println("Element poped: " + element);
return element; // Deleted element.
}
// Checks if the stack is underflow..
public boolean isEmpty(){
if(top == -1){
System.out.println("Stack Underflow!");
return true;
}
return false;
}
// Returns element at the top..
public int peek(){
if(isEmpty()){
System.out.println("Stack Underflow!");
return -1;
}
int element = stack[top];
System.out.println("Element peeked: " + element);
return element;
}
// Returns the size of the stack..
public int sizeof(){
int size = 0;
for(int i =0; i< this.size; i++){ // Instead of this for loop top can also be returned as the size.
if(stack[i] != 0){
size++;
}
}
System.out.println("Size of the stack is " + size);
return size;
}
// Checks if element is present inside the array or not.
public int isPresent(int element){
int present = -1;
for(int i=0; i< this.size; i++){
if(stack[i] == element){
present = 0;
break;
}
}
if(present == -1){
System.out.println("Element not found!");
return -1;
}
System.out.println("Element found!");
return present;
}
// Reduces the size of the stack.
private void shrink(){
int len = sizeof();
if(len <= (size/2)/2){
size /= 2;
}
// new array for stack
int newStack[] = new int[size];
// Copying all the values to new stack.
System.arraycopy(stack, 0, newStack, 0, len);
// Rereffrencing stack.
stack = newStack;
}
// Expands the size of the stack.
private void expand(){
int len = sizeof();
int newStack[] = new int[size * 2];
System.arraycopy(stack, 0, newStack, 0, len);
stack = newStack;
size *= 2;
}
}
// Making a Node class.
class Node{
int data;
Node next; // Self refference.
}
class LinkedLists{
Node head; // The First node of the linked list.
public void insert(int data)
{
Node node = new Node();
node.data = data;
node.next = null; // As it would be inserted at the end.
if(head==null) // If linked list does not exist.
{
head = node;
}
else
{
Node n = head;
// Traversing to the end...
while(n.next != null)
{
n = n.next;
}
n.next = node; // overwritting null with reff(node)..
}
}
public void insertAtStart(int data)
{
Node node = new Node();
node.data = data;
node.next = head; // As it would be inserted at the end.
head = node;
}
public void insertAt(int index, int data)
{
Node node = new Node();
node.data = data;
node.next = null;
if(index == 0)
{
insertAtStart(data);
}
else
{
// Traversing to the index
Node n = head;
for(int i=0; i< index - 1; i++)
{
n = n.next;
}
node.next = n.next;
n.next = node;
}
}
private boolean isExist(){
if(head != null)
{
return true;
}
return false;
}
public void show(){
if(isExist()){
Node node = head;
while(node.next != null)
{
System.out.println(node.data);
node = node.next;
}
// For the last element with the refference null
System.out.println(node.data);
}
else
{
System.out.println("Linked List does not exist.");
}
}
public void deleteAtStart()
{
head = head.next;
}
public void delete(int index)
{
if(index == 0)
{
deleteAtStart();
}
else
{
// Traversing to the index
Node n = head;
Node temp = null;
for(int i=0; i< index - 1; i++)
{
n = n.next;
}
temp = n.next;
n.next = temp.next;
}
}
}
class Queue{
int queue[] = new int[5]; //Default size of the queue.
int front = -1;
int rear = -1;
int size = 5; // Size of the queue.
// Expands the size of the queue.
private void expand(){
int len = sizeof();
int newQueue[] = new int[size * 2];
System.arraycopy(queue, 0, newQueue, 0, len);
queue = newQueue;
size *= 2;
}
public boolean isEmpty()
{
if(front == rear)
{
return true;
}
return false;
}
public int sizeof()
{
return rear - front;
}
public void enqueue(int element)
{
if(rear == size)
{
expand();
}
rear++;
queue[rear] = element;
System.out.println("Element added to the queue");
}
public void dequeue()
{
if(front == -1 && rear == -1)
{
System.out.println("No Elements to remove");
}
else
{
int element = queue[front];
front++;
System.out.println("Element " + element + " was removed");
}
}
public int peek()
{
int element = queue[front];
System.out.println(element);
return element;
}
public boolean isPresent(int element)
{
for(int i = front; i < rear; i++)
{
if(queue[i] == element)
{
System.out.println(element + " is present in the queue");
return true;
}
}
return false;
}
public void show()
{
for(int i = front; i < rear; i++)
{
System.out.println(queue[i]);
}
}
// Reduces the size of the stack.
private void shrink(){
int len = sizeof();
if(len <= (size/2)/2){
size /= 2;
}
// new array for stack
int newQueue[] = new int[size];
// Copying all the values to new stack.
System.arraycopy(queue, 0, newQueue, 0, len);
// Rereffrencing stack.
queue = newQueue;
}
}
class dataStructures{
public static void main(String args[]){
/*
// Stack example...
Stack s = new Stack();
s.push(10);
s.push(11);
s.push(50);
s.pop();
s.peek()
s.isPresent(11);
*/
/*
// Linked List example...
LinkedLists list = new LinkedLists();
list.insert(10);
list.insert(55);
list.insert(35);
list.insertAtStart(15);
list.insertAt(2, 77);
list.delete(2);
list.show();
*/
/*
// Queue Example
*** There are still few bugs left to fix here ***
--> Shrink and expand witjh dequeue is to be fixed!!!
Queue queue = new Queue();
queue.enqueue(10);
queue.enqueue(50);
queue.enqueue(60);
queue.dequeue();
queue.isEmpty();
queue.isPresent(50);
queue.show();
*/
}
}