-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deque.java
152 lines (121 loc) · 3.44 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
151
152
/**
* Auto Generated Java Class.
*/
import java.util.Iterator;
public class Deque<Item> implements Iterable<Item> {
private int N;
private Node first, last;
private class Node {
private Item item;
private Node next;
private Node previous;
}
public Deque() {
first = null;
last = null;
N = 0;
}
public boolean isEmpty() {
return N == 0;
}
public int size() {
return N;
}
public void addFirst(Item item) {
if (item == null) {
throw new java.lang.NullPointerException("This item you add is null");
}
Node oldFirst = first;
first = new Node();
first.item = item;
if (N == 1 && last == null) {
last = oldFirst;
}
if (oldFirst != null) {
oldFirst.previous = first;
first.next = oldFirst;
}
N++;
}
public void addLast(Item item) {
if (item == null) {
throw new java.lang.NullPointerException("This item you add is null");
}
Node oldLast = last;
last = new Node();
last.item = item;
if (N == 1 && first == null) {
first = oldLast;
}
if (oldLast != null) {
last.previous = oldLast;
oldLast.next = last;
}
N++;
}
public Item removeFirst() {
if (isEmpty()) {
throw new java.util.NoSuchElementException("The stack is empty");
}
if (first != null) {
Item item = first.item;
first = first.next;
N--;
return item;
}
else {
return removeLast();
}
}
public Item removeLast() {
if (isEmpty()) {
throw new java.util.NoSuchElementException("The stack is empty");
}
if (last != null) {
Item item = last.item;
last = last.previous;
N--;
return item;
}
else {
return removeFirst();
}
}
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("The following method cannot be called");
}
public Item next() {
if (!hasNext()) {
throw new java.util.NoSuchElementException("There no more items in the stack");
}
Item item = current.item;
current = current.next;
return item;
}
}
public static void main(String[] args) {
Deque<String> s = new Deque<String>();
s.addLast("A");
//s.addFirst("C");
//s.addFirst("D");
//StdOut.println(s.size());
//StdOut.println(s.first.item);
// StdOut.println(s.last.item);
//StdOut.println(s.first.next.item);
//StdOut.println(s.last.previous.item);
s.removeFirst();
//s.removeLast();
//s.removeLast();
//s.removeLast();
StdOut.println(s.size());
}
/* ADD YOUR CODE HERE */
}