HashSet.java 8.75 KB
Newer Older
1
/* HashSet.java -- a class providing a HashMap-backed Set
2
   Copyright (C) 1998, 1999, 2001, 2004, 2005  Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

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.

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */
37 38 39 40 41 42 43


package java.util;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
Dalibor Topic committed
44
import java.io.Serializable;
45 46

/**
47 48
 * This class provides a HashMap-backed implementation of the Set interface.
 * <p>
49 50
 *
 * Most operations are O(1), assuming no hash collisions.  In the worst
51 52 53 54 55 56 57 58 59 60
 * 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>
61
 *
62 63 64 65 66
 * 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.
67
 *
68
 * @author Jon Zeppieri
69
 * @author Eric Blake (ebb9@email.byu.edu)
70 71 72 73 74 75 76 77
 * @see Collection
 * @see Set
 * @see TreeSet
 * @see Collections#synchronizedSet(Set)
 * @see HashMap
 * @see LinkedHashSet
 * @since 1.2
 * @status updated to 1.4
78 79 80 81
 */
public class HashSet extends AbstractSet
  implements Set, Cloneable, Serializable
{
82 83 84 85
  /**
   * Compatible with JDK 1.2.
   */
  private static final long serialVersionUID = -5024744406713321676L;
86 87

  /**
88 89 90 91 92 93 94
   * 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).
95 96 97
   */
  public HashSet()
  {
98
    this(HashMap.DEFAULT_CAPACITY, HashMap.DEFAULT_LOAD_FACTOR);
99 100 101
  }

  /**
102 103
   * Construct a new, empty HashSet whose backing HashMap has the supplied
   * capacity and the default load factor (0.75).
104
   *
105 106
   * @param initialCapacity the initial capacity of the backing HashMap
   * @throws IllegalArgumentException if the capacity is negative
107 108 109
   */
  public HashSet(int initialCapacity)
  {
110
    this(initialCapacity, HashMap.DEFAULT_LOAD_FACTOR);
111 112 113
  }

  /**
114 115
   * Construct a new, empty HashSet whose backing HashMap has the supplied
   * capacity and load factor.
116
   *
117 118 119 120
   * @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
121 122 123
   */
  public HashSet(int initialCapacity, float loadFactor)
  {
124
    map = init(initialCapacity, loadFactor);
125 126 127
  }

  /**
128 129 130 131
   * 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).
132
   *
133 134
   * @param c a collection of initial set elements
   * @throws NullPointerException if c is null
135 136 137
   */
  public HashSet(Collection c)
  {
138
    this(Math.max(2 * c.size(), HashMap.DEFAULT_CAPACITY));
139 140 141 142
    addAll(c);
  }

  /**
143 144
   * Adds the given Object to the set if it is not already in the Set.
   * This set permits a null element.
145
   *
146 147
   * @param o the Object to add to this Set
   * @return true if the set did not already contain o
148 149 150
   */
  public boolean add(Object o)
  {
151
    return map.put(o, "") == null;
152 153 154
  }

  /**
155
   * Empties this Set of all elements; this takes constant time.
156 157 158 159 160 161 162
   */
  public void clear()
  {
    map.clear();
  }

  /**
163 164 165 166
   * Returns a shallow copy of this Set. The Set itself is cloned; its
   * elements are not.
   *
   * @return a shallow clone of the set
167 168 169
   */
  public Object clone()
  {
170 171 172
    HashSet copy = null;
    try
      {
173
        copy = (HashSet) super.clone();
174 175 176
      }
    catch (CloneNotSupportedException x)
      {
177
        // Impossible to get here.
178
      }
179
    copy.map = (HashMap) map.clone();
180 181 182 183
    return copy;
  }

  /**
184
   * Returns true if the supplied element is in this Set.
185
   *
186 187
   * @param o the Object to look for
   * @return true if it is in the set
188 189 190 191 192 193
   */
  public boolean contains(Object o)
  {
    return map.containsKey(o);
  }

194 195 196 197
  /**
   * Returns true if this set has no elements in it.
   *
   * @return <code>size() == 0</code>.
198 199 200
   */
  public boolean isEmpty()
  {
201
    return map.size == 0;
202 203 204
  }

  /**
205 206 207 208 209 210 211
   * 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
212 213 214
   */
  public Iterator iterator()
  {
215 216
    // Avoid creating intermediate keySet() object by using non-public API.
    return map.iterator(HashMap.KEYS);
217 218 219
  }

  /**
220 221 222 223
   * 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
224 225 226 227 228 229 230
   */
  public boolean remove(Object o)
  {
    return (map.remove(o) != null);
  }

  /**
231 232 233
   * Returns the number of elements in this Set (its cardinality).
   *
   * @return the size of the set
234 235 236
   */
  public int size()
  {
237
    return map.size;
238 239
  }

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
  /**
   * 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
   */
262 263
  private void writeObject(ObjectOutputStream s) throws IOException
  {
264 265 266
    s.defaultWriteObject();
    // Avoid creating intermediate keySet() object by using non-public API.
    Iterator it = map.iterator(HashMap.KEYS);
267 268 269 270 271 272 273
    s.writeInt(map.buckets.length);
    s.writeFloat(map.loadFactor);
    s.writeInt(map.size);
    while (it.hasNext())
      s.writeObject(it.next());
  }

274 275 276 277 278 279 280 281 282 283 284 285
  /**
   * 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
286
  {
287
    s.defaultReadObject();
288

289 290 291
    map = init(s.readInt(), s.readFloat());
    for (int size = s.readInt(); size > 0; size--)
      map.put(s.readObject(), "");
292 293
  }
}