-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deque.java
150 lines (126 loc) · 4.19 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
149
150
/* *****************************************************************************
* Name:
* Date:
* Description:
**************************************************************************** */
import edu.princeton.cs.algs4.StdOut;
import java.util.Iterator;
public class Deque<Item> implements Iterable<Item> {
private Node first;
private Node last;
private int N;
private class Node {
Item item;
Node next;
Node prior;
}
public Deque() // construct an empty deque
{
first = null;
last = null;
N = 0;
}
public boolean isEmpty() // is the deque empty?
{
return N == 0;
}
public int size() // return the number of items on the deque
{
return N;
}
public void addFirst(Item item) // add the item to the front
{
if (item == null)
throw new java.lang.IllegalArgumentException("addFirst has null argument");
Node oldFirst = first;
first = new Node(); // I forgot to instantiate it at first!!
first.item = item;
first.next = oldFirst;
first.prior = null;
if (isEmpty()) last = first;
else oldFirst.prior = first;
N++;
}
public void addLast(Item item) // add the item to the end
{
if (item == null)
throw new java.lang.IllegalArgumentException("addLast has null argument");
Node oldLast = last;
last = new Node();
last.item = item;
last.prior = oldLast;
last.next = null;
if (isEmpty()) first = last;
else oldLast.next = last;
N++;
}
public Item removeFirst() // remove and return the item from the front
{
if (isEmpty()) throw new java.util.NoSuchElementException("empty, cannot removeFirst");
Item item = first.item;
first = first.next;
N--; // this should be before isEmpty() because we determine is Empty by N == 0
if (isEmpty()) last = null; // if after deletion the deque is empty
else first.prior = null;
return item;
}
public Item removeLast() // remove and return the item from the end
{
if (isEmpty()) throw new java.util.NoSuchElementException("empty, cannot removeLast");
Item item = last.item;
last = last.prior;
N--;
if (isEmpty()) first = null;
// if after removing is empty, then last=null then. So last.next is null dereference
else last.next = null;
return item;
}
public Iterator<Item> iterator() // return an iterator over items in order from front to end
{
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("called remove()");
}
public Item next() {
if (!hasNext()) throw new java.util.NoSuchElementException("no next element");
Item item = current.item;
current = current.next;
return item;
}
}
public static void main(String[] args) // unit testing (optional)
{
Deque<String> deque = new Deque<String>();
deque.addFirst("b");
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println();
deque.addFirst("a");
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println();
deque.addLast("c");
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println();
deque.removeFirst();
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println();
deque.removeLast();
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println();
deque.removeLast();
for (String s : deque)
StdOut.printf("%s ", s);
StdOut.println("no more elements");
deque.removeFirst();
}
}