-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.java
More file actions
107 lines (62 loc) · 1.26 KB
/
Copy pathQueue.java
File metadata and controls
107 lines (62 loc) · 1.26 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
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
public class Queue {
int[] arr;
int front , rear;
int SIZE;
Queue(int SIZE){
this.SIZE = SIZE;
arr= new int[SIZE];
front = rear = -1;
}
//add element
public void enqueue(int data) {
if(isFull()) {
System.out.print("queue is full");
return;
}else {
if(front == -1) front = 0;
rear = (rear +1) % SIZE;
arr[rear] = data;
}
}
public int dequeue() {
int element;
if(isEmpty()) {
System.out.print("queue is empty");
return -1;
}else {
element = arr[front];
if(front == rear) {
front = -1 ;
rear = -1;
}else {
front = (front +1) % SIZE;
}
return element;
}
}
public void printQueue() {
for(int i = front ; i != rear ; i = (i+1) % SIZE ) {
System.out.print(arr[i]+" ");
}
}
public boolean isFull() {
if(front == 0 && rear == SIZE-1) return true;
if(front == rear + 1 ) return true;
return false;
}
public boolean isEmpty() {
if(front == -1) return true;
return false;
}
public static void main(String args[]) {
Queue q = new Queue(5);
q.enqueue(1);
q.enqueue(2);
q.enqueue(3);
q.dequeue();
q.enqueue(5);
q.enqueue(5);
q.enqueue(5);
q.printQueue();
}
}