HashSet.java 8.17 KB
Newer Older
1 2
/* HashSet.java -- a class providing a HashMap-backed Set
   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
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

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

As a special exception, if you link this library with other files to
produce an executable, this library does not by itself cause the
resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why the
executable file might be covered by the GNU General Public License. */


package java.util;

import java.io.IOException;
import java.io.Serializable;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

/**
36 37
 * This class provides a HashMap-backed implementation of the Set interface.
 * <p>
38 39
 *
 * Most operations are O(1), assuming no hash collisions.  In the worst
40 41 42 43 44 45 46 47 48 49
 * case (where all hashes collide), operations are O(n). Setting the
 * initial capacity too low will force many resizing operations, but
 * setting the initial capacity too high (or loadfactor too low) leads
 * to wasted memory and slower iteration.
 * <p>
 *
 * HashSet accepts the null key and null values.  It is not synchronized,
 * so if you need multi-threaded access, consider using:<br>
 * <code>Set s = Collections.synchronizedSet(new HashSet(...));</code>
 * <p>
50
 *
51 52 53 54 55
 * The iterators are <i>fail-fast</i>, meaning that any structural
 * modification, except for <code>remove()</code> called on the iterator
 * itself, cause the iterator to throw a
 * {@link ConcurrentModificationException} rather than exhibit
 * non-deterministic behavior.
56
 *
57 58 59 60 61 62 63 64 65 66
 * @author Jon Zeppieri
 * @author Eric Blake <ebb9@email.byu.edu>
 * @see Collection
 * @see Set
 * @see TreeSet
 * @see Collections#synchronizedSet(Set)
 * @see HashMap
 * @see LinkedHashSet
 * @since 1.2
 * @status updated to 1.4
67 68 69 70
 */
public class HashSet extends AbstractSet
  implements Set, Cloneable, Serializable
{
71 72 73 74
  /**
   * Compatible with JDK 1.2.
   */
  private static final long serialVersionUID = -5024744406713321676L;
75 76

  /**
77 78 79 80 81 82 83
   * The HashMap which backs this Set.
   */
  private transient HashMap map;

  /**
   * Construct a new, empty HashSet whose backing HashMap has the default
   * capacity (11) and loadFacor (0.75).
84 85 86
   */
  public HashSet()
  {
87
    this(HashMap.DEFAULT_CAPACITY, HashMap.DEFAULT_LOAD_FACTOR);
88 89 90
  }

  /**
91 92
   * Construct a new, empty HashSet whose backing HashMap has the supplied
   * capacity and the default load factor (0.75).
93
   *
94 95
   * @param initialCapacity the initial capacity of the backing HashMap
   * @throws IllegalArgumentException if the capacity is negative
96 97 98
   */
  public HashSet(int initialCapacity)
  {
99
    this(initialCapacity, HashMap.DEFAULT_LOAD_FACTOR);
100 101 102
  }

  /**
103 104
   * Construct a new, empty HashSet whose backing HashMap has the supplied
   * capacity and load factor.
105
   *
106 107 108 109
   * @param initialCapacity the initial capacity of the backing HashMap
   * @param loadFactor the load factor of the backing HashMap
   * @throws IllegalArgumentException if either argument is negative, or
   *         if loadFactor is POSITIVE_INFINITY or NaN
110 111 112
   */
  public HashSet(int initialCapacity, float loadFactor)
  {
113
    map = init(initialCapacity, loadFactor);
114 115 116
  }

  /**
117 118 119 120
   * Construct a new HashSet with the same elements as are in the supplied
   * collection (eliminating any duplicates, of course). The backing storage
   * has twice the size of the collection, or the default size of 11,
   * whichever is greater; and the default load factor (0.75).
121
   *
122 123
   * @param c a collection of initial set elements
   * @throws NullPointerException if c is null
124 125 126
   */
  public HashSet(Collection c)
  {
127
    this(Math.max(2 * c.size(), HashMap.DEFAULT_CAPACITY));
128 129 130 131
    addAll(c);
  }

  /**
132 133
   * Adds the given Object to the set if it is not already in the Set.
   * This set permits a null element.
134
   *
135 136
   * @param o the Object to add to this Set
   * @return true if the set did not already contain o
137 138 139
   */
  public boolean add(Object o)
  {
140
    return map.put(o, "") == null;
141 142 143
  }

  /**
144
   * Empties this Set of all elements; this takes constant time.
145 146 147 148 149 150 151
   */
  public void clear()
  {
    map.clear();
  }

  /**
152 153 154 155
   * Returns a shallow copy of this Set. The Set itself is cloned; its
   * elements are not.
   *
   * @return a shallow clone of the set
156 157 158
   */
  public Object clone()
  {
159 160 161
    HashSet copy = null;
    try
      {
162
        copy = (HashSet) super.clone();
163 164 165
      }
    catch (CloneNotSupportedException x)
      {
166
        // Impossible to get here.
167
      }
168
    copy.map = (HashMap) map.clone();
169 170 171 172
    return copy;
  }

  /**
173
   * Returns true if the supplied element is in this Set.
174
   *
175 176
   * @param o the Object to look for
   * @return true if it is in the set
177 178 179 180 181 182
   */
  public boolean contains(Object o)
  {
    return map.containsKey(o);
  }

183 184 185 186
  /**
   * Returns true if this set has no elements in it.
   *
   * @return <code>size() == 0</code>.
187 188 189
   */
  public boolean isEmpty()
  {
190
    return map.size == 0;
191 192 193
  }

  /**
194 195 196 197 198 199 200
   * Returns an Iterator over the elements of this Set, which visits the
   * elements in no particular order.  For this class, the Iterator allows
   * removal of elements. The iterator is fail-fast, and will throw a
   * ConcurrentModificationException if the set is modified externally.
   *
   * @return a set iterator
   * @see ConcurrentModificationException
201 202 203
   */
  public Iterator iterator()
  {
204 205
    // Avoid creating intermediate keySet() object by using non-public API.
    return map.iterator(HashMap.KEYS);
206 207 208
  }

  /**
209 210 211 212
   * Removes the supplied Object from this Set if it is in the Set.
   *
   * @param o the object to remove
   * @return true if an element was removed
213 214 215 216 217 218 219
   */
  public boolean remove(Object o)
  {
    return (map.remove(o) != null);
  }

  /**
220 221 222
   * Returns the number of elements in this Set (its cardinality).
   *
   * @return the size of the set
223 224 225
   */
  public int size()
  {
226
    return map.size;
227 228
  }

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
  /**
   * Helper method which initializes the backing Map. Overridden by
   * LinkedHashSet for correct semantics.
   *
   * @param capacity the initial capacity
   * @param load the initial load factor
   * @return the backing HashMap
   */
  HashMap init(int capacity, float load)
  {
    return new HashMap(capacity, load);
  }

  /**
   * Serializes this object to the given stream.
   *
   * @param s the stream to write to
   * @throws IOException if the underlying stream fails
   * @serialData the <i>capacity</i> (int) and <i>loadFactor</i> (float)
   *             of the backing store, followed by the set size (int),
   *             then a listing of its elements (Object) in no order
   */
251 252
  private void writeObject(ObjectOutputStream s) throws IOException
  {
253 254 255
    s.defaultWriteObject();
    // Avoid creating intermediate keySet() object by using non-public API.
    Iterator it = map.iterator(HashMap.KEYS);
256 257 258 259 260 261 262
    s.writeInt(map.buckets.length);
    s.writeFloat(map.loadFactor);
    s.writeInt(map.size);
    while (it.hasNext())
      s.writeObject(it.next());
  }

263 264 265 266 267 268 269 270 271 272 273 274
  /**
   * Deserializes this object from the given stream.
   *
   * @param s the stream to read from
   * @throws ClassNotFoundException if the underlying stream fails
   * @throws IOException if the underlying stream fails
   * @serialData the <i>capacity</i> (int) and <i>loadFactor</i> (float)
   *             of the backing store, followed by the set size (int),
   *             then a listing of its elements (Object) in no order
   */
  private void readObject(ObjectInputStream s)
    throws IOException, ClassNotFoundException
275
  {
276
    s.defaultReadObject();
277

278 279 280
    map = init(s.readInt(), s.readFloat());
    for (int size = s.readInt(); size > 0; size--)
      map.put(s.readObject(), "");
281 282
  }
}