-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSET.java
227 lines (197 loc) · 6.15 KB
/
SET.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
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
/*************************************************************************
* Compilation: javac SET.java
* Execution: java SET
*
* Set implementation using Java's TreeSet library.
* Does not allow duplicates.
*
* % java SET
* 128.112.136.11
* 208.216.181.15
* null
*
* Remarks
* -------
* - The equals() method declares two empty sets to be equal
* even if they are parameterized by different generic types.
* This is consistent with the way equals() works with Java's
* Collections framework.
*
*************************************************************************/
import java.util.Iterator;
import java.util.SortedSet;
import java.util.TreeSet;
/**
* The <tt>SET</tt> class represents an ordered set. It assumes that
* the elements are <tt>Comparable</tt>.
* It supports the usual <em>add</em>, <em>contains</em>, and <em>delete</em>
* methods. It also provides ordered methods for finding the <em>minimum</em>,
* <em>maximum</em>, <em>floor</em>, and <em>ceiling</em>.
* <p>
* This implementation uses a balanced binary search tree.
* The <em>add</em>, <em>contains</em>, <em>delete</em>, <em>minimum</em>,
* <em>maximum</em>, <em>ceiling</em>, and <em>floor</em> methods take
* logarithmic time.
* <p>
* For additional documentation, see <a href="/algs4/45applications">Section 4.5</a> of
* <i>Algorithms in Java, 4th Edition</i> by Robert Sedgewick and Kevin Wayne.
*/
public class SET<Key extends Comparable<Key>> implements Iterable<Key> {
private TreeSet<Key> set;
/**
* Create an empty set.
*/
public SET() {
set = new TreeSet<Key>();
}
/**
* Is this set empty?
*/
public boolean isEmpty() {
return set.isEmpty();
}
/**
* Add the key to this set.
*/
public void add(Key key) {
set.add(key);
}
/**
* Does this set contain the given key?
*/
public boolean contains(Key key) {
return set.contains(key);
}
/**
* Delete the given key from this set.
*/
public void delete(Key key) {
set.remove(key);
}
/**
* Return the number of keys in this set.
*/
public int size() {
return set.size();
}
/**
* Return an Iterator for this set.
*/
public Iterator<Key> iterator() {
return set.iterator();
}
/**
* Return the key in this set with the maximum value.
*/
public Key max() {
return set.last();
}
/**
* Return the key in this set with the minimum value.
*/
public Key min() {
return set.first();
}
/**
* Return the smallest key in this set >= k.
*/
public Key ceil(Key k) {
SortedSet<Key> tail = set.tailSet(k);
if (tail.isEmpty()) return null;
else return tail.first();
}
/**
* Return the largest key in this set <= k.
*/
public Key floor(Key k) {
if (set.contains(k)) return k;
// does not include key if present (!)
SortedSet<Key> head = set.headSet(k);
if (head.isEmpty()) return null;
else return head.last();
}
/**
* Return the union of this set with that set.
*/
public SET<Key> union(SET<Key> that) {
SET<Key> c = new SET<Key>();
for (Key x : this) { c.add(x); }
for (Key x : that) { c.add(x); }
return c;
}
/**
* Return the intersection of this set with that set.
*/
public SET<Key> intersects(SET<Key> that) {
SET<Key> c = new SET<Key>();
if (this.size() < that.size()) {
for (Key x : this) {
if (that.contains(x)) c.add(x);
}
}
else {
for (Key x : that) {
if (this.contains(x)) c.add(x);
}
}
return c;
}
/**
* Does this SET equal that set.
*/
public boolean equals(Object y) {
if (y == this) return true;
if (y == null) return false;
if (y.getClass() != this.getClass()) return false;
SET<Key> that = (SET<Key>) y;
if (this.size() != that.size()) return false;
try {
for (Key k : this)
if (!that.contains(k)) return false;
}
catch (ClassCastException exception) {
return false;
}
return true;
}
/***********************************************************************
* Test routine.
**********************************************************************/
public static void main(String[] args) {
SET<String> set = new SET<String>();
// insert some keys
set.add("www.cs.princeton.edu");
set.add("www.cs.princeton.edu"); // overwrite old value
set.add("www.princeton.edu");
set.add("www.math.princeton.edu");
set.add("www.yale.edu");
set.add("www.amazon.com");
set.add("www.simpsons.com");
set.add("www.stanford.edu");
set.add("www.google.com");
set.add("www.ibm.com");
set.add("www.apple.com");
set.add("www.slashdot.com");
set.add("www.whitehouse.gov");
set.add("www.espn.com");
set.add("www.snopes.com");
set.add("www.movies.com");
set.add("www.cnn.com");
set.add("www.iitb.ac.in");
StdOut.println(set.contains("www.cs.princeton.edu"));
StdOut.println(!set.contains("www.harvardsucks.com"));
StdOut.println(set.contains("www.simpsons.com"));
StdOut.println();
StdOut.println("ceil(www.simpsonr.com) = " + set.ceil("www.simpsonr.com"));
StdOut.println("ceil(www.simpsons.com) = " + set.ceil("www.simpsons.com"));
StdOut.println("ceil(www.simpsont.com) = " + set.ceil("www.simpsont.com"));
StdOut.println("floor(www.simpsonr.com) = " + set.floor("www.simpsonr.com"));
StdOut.println("floor(www.simpsons.com) = " + set.floor("www.simpsons.com"));
StdOut.println("floor(www.simpsont.com) = " + set.floor("www.simpsont.com"));
StdOut.println();
// print out all keys in the set in lexicographic order
for (String s : set) {
StdOut.println(s);
}
}
}