-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.java
More file actions
125 lines (98 loc) · 2.75 KB
/
Queue.java
File metadata and controls
125 lines (98 loc) · 2.75 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package com.mycompany.algorithm_final_project;
import java.util.Scanner;
/**
*
* @author israkkayumchowdhury
*/
public class Queue {
final static int MAX = 10;
static int[] arr = new int[MAX];
static int front = -1;
static int rear = -1;
// enQueue function
public static void en_queue() {
Scanner s = new Scanner(System.in);
System.out.print(" Enter the element: ");
int x = s.nextInt();
if (rear == MAX - 1) {
System.out.println(" Queue Overflow!");
} else if (front == -1 && rear == -1) {
front = rear = 0;
arr[rear] = x;
}
else{
rear++;
arr[rear] = x;
}
}
// deQueue function
public static void de_queue(){
if (front == -1 && rear == -1) {
System.out.println(" Queue Underflow!");
}
else if(front == rear){
front = rear = -1;
}
else{
front++;
}
}
// peek function
public static void peek(){
if (front == -1 && rear == -1) {
System.out.println(" Queue Underflow!");
}
else{
System.out.println(" Queue peek value is "+ arr[front]);
}
}
// display function
public static void display(){
if (front == -1 && rear == -1) {
System.out.println(" Quue is Empty!");
}
else{
System.out.print(" Queue elements are: ");
for (int i = front; i <= rear; i++) {
System.out.print(arr[i]+ " ");
}
}
}
public void main_func() {
Scanner s = new Scanner(System.in);
while (true) {
System.out.println("");
System.out.println(" 1. enQueue");
System.out.println(" 2. deQueue");
System.out.println(" 3. Peek");
System.out.println(" 4. Display");
System.out.println(" 5. Exit");
System.out.println("");
System.out.print(" Choice your suitable option --> ");
int c = s.nextInt();
switch (c) {
case 1:
//enQueue
en_queue();
break;
case 2:
//deQueue
de_queue();
break;
case 3:
//peek
peek();
break;
case 4:
// display
display();
break;
case 5:
//exit
return;
default:
System.out.println(" Invalid Input!");
}
}
}
}