-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeque.java
More file actions
166 lines (154 loc) · 4.08 KB
/
Deque.java
File metadata and controls
166 lines (154 loc) · 4.08 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
* Dequeue. A double-ended queue or deque (pronounced "deck") is a
* generalization of a stack and a queue that supports inserting and removing
* items from either the front or the back of the data structure.
*
* 28-08-2012.
*/
//first, first, first, last, -- , - , -
import java.util.Iterator;
import java.util.NoSuchElementException;
public class Deque<Item> implements Iterable<Item>
{
private Node first;
private Node last;
private int N;
private class Node
{
private Item item;
private Node next;
private Node prev;
}
// construct an empty deque
public Deque()
{
first = null;
last = null;
N = 0;
}
// is the deque empty?
public boolean isEmpty()
{
return N == 0;
}
// return the number of items on the deque
public int size()
{
return N;
}
// insert the item at the front
public void addFirst(Item item)
{
if (item == null)
throw new java.lang.NullPointerException();
Node oldFirst = first;
first = new Node();
first.item = item;
if (isEmpty())
first.next = null;
else
{
first.next = oldFirst;
oldFirst.prev = first;
}
first.prev = null;
N++;
if (N == 1)
last = first;
}
// insert the item at the end
public void addLast(Item item)
{
if (item == null)
throw new java.lang.NullPointerException();
Node oldLast = last;
last = new Node();
last.item = item;
if (isEmpty())
last.prev = null;
else
{
last.prev = oldLast;
oldLast.next = last;
}
last.next = null;
++N;
if (N == 1)
first = last;
}
// delete and return the item at the front
public Item removeFirst()
{
if(isEmpty())
throw new NoSuchElementException("Queue underflow");
Item item = first.item;
if (N > 1)
{
first = first.next;
first.prev = null;
}
else
{
first = null;
last = null;
}
--N;
return item;
}
// delete and return the item at the end
public Item removeLast()
{
if (isEmpty())
throw new NoSuchElementException("Queue underflow");
Item item = last.item;
if (N > 1)
{
last = last.prev;
last.next = null;
}
else
{
last = null;
first = null;
}
--N;
return item;
}
// return an iterator over items in order from front to end
public Iterator<Item> iterator()
{
return new ListIterator();
}
private class ListIterator implements Iterator<Item> {
private Node current = first;
public boolean hasNext()
{
return current != null;
}
public void remove()
{
throw new UnsupportedOperationException();
}
public Item next() {
if (!hasNext()) throw new NoSuchElementException();
Item item = current.item;
current = current.next;
return item;
}
}
public static void main(String[] args) {
Deque<String> q = new Deque<String>();
while (!StdIn.isEmpty()) {
String item = StdIn.readString();
if (item.equals("l"))
q.addLast(item);
else if (item.equals("--"))
StdOut.println(q.removeFirst()+ " ");
else if (item.equals("f"))
q.addFirst(item);
else
StdOut.println(q.removeLast()+ " ");
StdOut.println("(" + q.size() + " left on Deque)");
}
}
}