-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.java
More file actions
54 lines (46 loc) · 1.11 KB
/
Queue.java
File metadata and controls
54 lines (46 loc) · 1.11 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
import java.util.NoSuchElementException;
import java.util.ArrayList;
import java.util.NoSuchElementException;
public class Queue<T> implements QueueADT<T> {
private ArrayList<T> data;
public Queue() {
data = new ArrayList<T>();
}
public void enqueue(T item) {
data.add(item);
}
public T dequeue() throws NoSuchElementException {
T ret = data.get(0);
data.remove(0);
return ret;
}
public T front() throws NoSuchElementException {
return data.get(0);
}
public Queue<T> clone() {
Queue<T> ret = new Queue<T>();
for(T i:data) {
ret.enqueue(i);
}
return ret;
}
public int size() {
return data.size();
}
public boolean isEmpty() {
if(data.size() > 0) {
return false;
}
return true;
}
public void clear() {
data = new ArrayList<T>();
}
public String toString() {
StringBuilder sb = new StringBuilder();
for(T i:data) {
sb.append(i.toString());
}
return sb.toString();
}
}