Queue

Why learn Circular Queue?

  • dequeue operation causes blank cells Linear Queue(Array Implementation).
  • 삭제하고 남은 자리를 뒤에서부터 차례대로 채워넣으면 되지만 time complexity가 O(n)이 되어버린다. 우리의 목표는 항상 O(1)이다.



time / space complexity

  • Array는 만들 때 space complexity가 O(n) 나머지 메서드는 모두 O(1)
  • Linked List는 모든 메서드 O(1)
    그러므로 Queue를 사용하고자 한다면 Linked List가 Space Complexity에서 낫기 때문에 Linked List사용하도록 한다



When to Use / Avoid Queue

  • When to Use

    • Helps manage the data in particular way(FIFO)
    • Not easily corrupted(No one can easily insert data in middle)
  • When to Avoid

    • Random access not possible - if we have done some mistake, it is costly to rectify



Circular Queue Coding

CircularQueueByArray.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
package com.chung;
public class CircularQueueByArray{

int[] arr;
int topOfQueue;
int size;
int start;


public CircularQueueByArray(int size) {
this.arr = new int[size];
this.size = size;
this.topOfQueue = -1;
start = -1;
System.out.println("Successfully created an empty queue of size: "+size);
}//end of method


public void enQueue(int value) {
if(arr==null) {
System.out.println("Array is not yet created. Please create one first.");
}else if (isQueueFull()) {
System.out.println("\nQueue overflow error!!");
}else {
initializeStartOfArray();
if (topOfQueue+1 == size) { //if top is already at last cell of array, then reset it to first cell
topOfQueue=0;
}else {
topOfQueue++;
}
arr[topOfQueue] = value;
System.out.println("\nSuccessfully inserted "+value+" in the queue");
}
}//end of method


public void initializeStartOfArray() {
if (start == -1) {
start = 0;
}
}//end of method


public void deQueue() {
if (isQueueEmpty()) {
System.out.println("Queue underflow error!!");
} else {
System.out.println("\n---------------------------------------------");
System.out.println("Before Dequeue..");printArray();
System.out.println("\nDequeing value from Queue...");
System.out.println("Dequeued: "+arr[start]+" from queue");
arr[start] = 0; //initialize the unused cell to 0
if (start == topOfQueue) { //if there is only 1 element in Queue
start = topOfQueue = -1;
}else if (start+1 == size) { //if start has reached end of array, then start again from 0
start=0;
}else {
start++;
}
}
System.out.println("After Dequeue..");printArray();
System.out.println("---------------------------------------------");
}//end of method


public boolean isQueueEmpty() {
if (topOfQueue == -1)
return true;
else
return false;
}//end of method


public boolean isQueueFull() {
if (topOfQueue+1 == start) { //If we have completed a circle, then we can say that Queue is full
return true;
}else if ((start==0) && (topOfQueue+1 == size)) { //Trivial case of Queue being full
return true;
}else {
return false;
}
}//end of method


public void peekOperation() {
//if stack is not empty, return the value on top of stack
if (!isQueueEmpty()) {
System.out.println("\nPeeking value from queue...");
System.out.println(arr[start]);
}else {
System.out.println("The queue is empty!!");
}
}//end of method


public void deleteStack() {
System.out.println("\n\nDeleting the entire Queue...");
arr = null;
System.out.println("Queue is successfully deleted !");
}//end of method


//Print entire array
public void printArray() {
System.out.println("Array now...");
for(int i=0; i<size; i++) {
System.out.print(arr[i]+" ");
}
System.out.println("\nStart = " + start);
System.out.println("End = "+ topOfQueue);
}//end of method

}//end of class



QueueByLinkedList.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
package com.chung;

import linkedList.SingleLinkedList;

public class QueueByLinkedList {

SingleLinkedList list;


//constructor
public QueueByLinkedList() {
list = new SingleLinkedList();
}//end of method


public void enQueue(int value) {
if (list.getHead() == null) {
list.createSingleLinkedList(value);
} else {
// push a value on last of queue, update list tail too
list.insertInLinkedList(value, list.getSize());
}
}//end of method


public int deQueue() {
int value = -1;
if (isQueueEmpty()) {
System.out.println("Queue underflow error!!");
} else {
value = list.getHead().getValue();
list.deletionOfNode(0);
}
return value;
}//end of method


public int peek() {
if (!isQueueEmpty())
return list.getHead().getValue();
else {
System.out.println("The queue is empty!!");
return -1;
}
}//end of method


public boolean isQueueEmpty() {
if (list.getHead() == null)
return true;
else
return false;
}//end of method


public void deleteStack() {
list.setHead(null);
}//end of method

}//end of class