-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathQueue_intArr.java
More file actions
66 lines (59 loc) · 994 Bytes
/
Copy pathQueue_intArr.java
File metadata and controls
66 lines (59 loc) · 994 Bytes
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
// Use int array to implement Queue
/**
* Created by xiaoyaoworm on 4/16/16.
*/
public class Queue{
int maxSize;
int[] arr;
int head;
int tail;
int nItems;
public Queue(int size){
maxSize = size;
arr = new int[size];
head = 0;
tail = -1;
nItems = 0;
}
public void enqueue(int num){
if(tail == arr.length-1){
tail = -1;
}
if(nItems == maxSize){
System.out.println("Queue is full, cannot enqueue.");
}
else {
tail++;
arr[tail] = num;
nItems++;
}
}
public int dequeue(){
if(head == -1){
head = arr.length-1;
}
if(nItems == 0){
System.out.println("Queue is empty, cannot dequeue.");
return -1;
} else {
int res= arr[head];
head--;
return res;
}
}
public int peek(){
if(head == -1){
head = arr.length-1;
}
if(nItems == 0){
System.out.println("Queue is empty, cannot peek.");
return -1;
} else {
int res= arr[head];
return res;
}
}
public boolean isEmpty(){
return nItems == 0;
}
}