forked from zafarmah92/Perculation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deque.java
148 lines (146 loc) · 3.46 KB
/
Deque.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import java.util.Iterator;
public class Deque<Item> implements Iterable<Item>
{
private Node first;
private Node last;
private int sizeOfDeque;
//construct an empty deque
public Deque()
{
first = null;
last = null;
sizeOfDeque = 0;
}
private class Node
{
private Item item;
private Node next;
private Node previous;
}
//is the deque empty
public boolean isEmpty()
{
return first == null;
}
//return the number of items on the deque
public int size()
{
return sizeOfDeque;
}
//insert the item at the front
public void addFirst(Item item)
{
if (item == null)
throw new java.lang.NullPointerException();
if (isEmpty())
{
first = new Node();
first.item = item;
first.next = null;
first.previous = null;
last = first;
}
else
{
Node oldFirst = first;
first = new Node();
first.item = item;
first.next = oldFirst;
first.previous = null;
oldFirst.previous = first;
}
sizeOfDeque++;
}
//insert the item at the end
public void addLast(Item item)
{
if (item == null)
throw new java.lang.NullPointerException();
if (isEmpty())
{
last = new Node();
last.item = item;
last.previous = null;
last.next = null;
first = last;
}
else
{
Node oldLast = last;
last = new Node();
last.item = item;
last.previous = oldLast;
last.next = null;
oldLast.next = last;
}
sizeOfDeque++;
}
//delete and return the item at the front
public Item removeFirst()
{
if (isEmpty())
throw new java.util.NoSuchElementException();
Item item = first.item;
Node n = first;
if (size() == 1)
{
first = null;
last = null;
}
else
{
first = first.next;
first.previous = null;
}
sizeOfDeque--;
n = null;
return item;
}
//delete and return the item at the end
public Item removeLast()
{
if (isEmpty())
throw new java.util.NoSuchElementException();
Item item = last.item;
Node n = last;
if (size() == 1)
{
first = null;
last = null;
}
else
{
last = last.previous;
last.next = null;
}
sizeOfDeque--;
n = null;
return item;
}
//return an iterator over items in order from front to end
public Iterator<Item> iterator()
{
return new DequeIterator();
}
private class DequeIterator implements Iterator<Item>
{
private Node current = first;
public boolean hasNext()
{
return current != null;
}
public void remove()
{
throw new java.lang.UnsupportedOperationException();
}
public Item next()
{
if (current == null)
throw new java.util.NoSuchElementException();
Item item = current.item;
current = current.next;
return item;
}
}
//gamingumar is here!
}