-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack.java
More file actions
342 lines (281 loc) · 6.86 KB
/
Stack.java
File metadata and controls
342 lines (281 loc) · 6.86 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package MadTools;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Scanner;
public class Stack<T> implements Iterable
{
// Stores Stack elements
private ArrayList<T> a = new ArrayList<>();
// Maximum size of Stack. 0 for unlimited.
private int m = 0;
/**
* Constructor to initialize Stack.
*/
Stack() {}
/**
* Constructor to initialize Stack.
* @param a
*/
Stack(ArrayList<T> a) {this.a = a;}
/**
* Constructor to initialize Stack.
* @param a
*/
Stack(Collection<T> a) {this.a = new ArrayList(a);}
/**
* Constructor to initialize Stack.
* @param a
*/
Stack(List<T> a) {this.a = new ArrayList(a);}
/**
* Constructor to initialize Stack.
* @param a
*/
Stack(Stack<T> a) {this.a = reverse(a.popToArrayList());}
/**
* Constructor to initialize Stack.
* @param a
*/
Stack(T[] a) {this.a = new ArrayList(Arrays.asList(a));}
/**
* Pops and returns element at Stack top.
* @return
*/
T pop() {return a.isEmpty() ? null : a.remove(a.size() - 1);}
/**
* Views but does not pop element at Stack top.
* @return
*/
T peek() {return a.get(a.size() - 1);}
/**
* Removes all elements from stack.
*/
void clear() {a.clear();}
/**
* Compares two Stacks.
* @param x
* @return
*/
boolean equals(Stack<T> x) {return x.hash() == a.hashCode();}
/**
* Pops elements serially. Allows Stack to be target of Enhanced For Loop.
* @return
*/
@Override
public Iterator iterator() {
ArrayList<T> x = reverse(a);
a.clear();
return x.iterator();
}
/**
* Pops Stack elements into an array.
* @return
*/
T[] popToArray()
{
T[] x = (T[]) (reverse(a)).toArray();
a.clear();
return x;
}
/**
* Pops Stack elements into an ArrayList.
* @return
*/
ArrayList<T> popToArrayList()
{
ArrayList<T> x = reverse(a);
a.clear();
return x;
}
/**
* Checks if Stack is empty.
* @return
*/
boolean isEmpty() {return a.isEmpty();}
/**
* Checks is Stack is full.
* @return
*/
boolean hasSpace() {return (m == 0) ? true : a.size() < m;}
/**
* Returns Hash code.
* @return
*/
int hash() {return a.hashCode();}
/**
* Returns size.
* @return
*/
int size() {return a.size();}
/**
* Returns maximum size. 0 for unlimited.
* @return
*/
int getMax() {return m;}
/**
* Removes size limit.
*/
void clearMax() {m = 0;}
/**
* Sets size limit.
* @param m
* @return
*/
boolean setMax(int m)
{
if (a.size() > m) return false;
this.m = m;
return true;
}
/**
* Sets maximum size and discards all overflowing elements.
* @param m
* @return
*/
int truncate(int m)
{
this.m = m;
a.subList(0, m - 1);
return a.size() - m;
}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(T s) {return (hasSpace()) ? false : a.add(s);}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(T s[]) {return (hasSpace() && (a.size() + s.length) >= m) ? false : a.addAll(Arrays.asList(s));}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(ArrayList<T> s) {return (hasSpace() && (a.size() + s.size()) >= m) ? false : a.addAll(s);}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(List<T> s) {return (hasSpace() && (a.size() + s.size()) >= m) ? false : a.addAll(s);}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(Collection<T> s) {return (hasSpace() && (a.size() + s.size()) >= m) ? false : a.addAll(s);}
/**
* Pushes onto Stack.
* @param s
* @return
*/
boolean push(Stack<T> s)
{
if (hasSpace() && (a.size() + s.size()) >= m) return false;
for (Object x : s.invert())push(s.pop());
return true;
}
/**
* Pushes onto Stack.
* @param f
* @return
* @throws FileNotFoundException
*/
boolean push(File f) throws FileNotFoundException
{
Scanner sc = new Scanner(f);
ArrayList<String> l = new ArrayList<>();
while (sc.hasNext()) l.add(sc.nextLine());
if ((hasSpace() && (a.size() + l.size()) >= m)) return false;
l.forEach((s) -> {a.add((T) s);});
return true;
}
/**
* Fits elements into Stack and returns number of elements pushed.
* @param s
* @return
*/
int fit(T s[])
{
int c = 0;
for (int i = 0; (i < s.length) && hasSpace() && push(s[i]); c++) {}
return c;
}
/**
* Fits elements into Stack and returns number of elements pushed.
* @param f
* @return
* @throws FileNotFoundException
*/
int fit(File f) throws FileNotFoundException
{
Scanner sc = new Scanner(f);
ArrayList<String> l = new ArrayList<>();
while (sc.hasNext()) l.add(sc.nextLine());
if (hasSpace() || (l.size() + a.size() <= m))
{
push(f);
return l.size();
}
int c = 0;
for (int i = 0; (i < l.size()) && hasSpace(); i++, c++) push((T) l.get(i));
return c;
}
/**
* Used internally for Stack operations.
* @param x
* @return
*/
private ArrayList<T> reverse(ArrayList<T> x)
{
ArrayList<T> t = new ArrayList<>();
x.forEach((_item) -> {t.add(x.remove(x.size()-1));});
return t;
}
/**
* Inverts Stack.
* @return
*/
Stack<T> invert()
{
Stack<T> s = new Stack<>();
a.forEach((l) -> {s.push(l);});
return s;
}
/**
* Writes elements of Stack to a file.
* @param p
* @param delimiter
* @return
* @throws IOException
*/
File toFile(String p, String delimiter) throws IOException
{
File f = new File(p);
if (f.createNewFile() == false) throw new IOException("Unable to create file");
PrintStream s = new PrintStream(f);
reverse(a).forEach((x) -> {s.print(x.toString()+delimiter);});
return f;
}
/**
* Returns Integer Stack with Hash code of each element.
* @return
*/
Stack<Integer> hashStack()
{
Stack<Integer> s = new Stack<>();
reverse(a).forEach((t) -> { s.push(t.hashCode());});
return s;
}
}