1 /* HashMap.java -- a class providing a basic hashtable data structure,
2 mapping Object --> Object
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GNU Classpath.
7 GNU Classpath is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Classpath is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Classpath; see the file COPYING. If not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 Linking this library statically or dynamically with other modules is
23 making a combined work based on this library. Thus, the terms and
24 conditions of the GNU General Public License cover the whole
27 As a special exception, the copyright holders of this library give you
28 permission to link this library with independent modules to produce an
29 executable, regardless of the license terms of these independent
30 modules, and to copy and distribute the resulting executable under
31 terms of your choice, provided that you also meet, for each linked
32 independent module, the terms and conditions of the license of that
33 module. An independent module is a module which is not derived from
34 or based on this library. If you modify this library, you may extend
35 this exception to your version of the library, but you are not
36 obligated to do so. If you do not wish to do so, delete this
37 exception statement from your version. */
42 import java
.io
.IOException
;
43 import java
.io
.ObjectInputStream
;
44 import java
.io
.ObjectOutputStream
;
45 import java
.io
.Serializable
;
47 // NOTE: This implementation is very similar to that of Hashtable. If you fix
48 // a bug in here, chances are you should make a similar change to the Hashtable
51 // NOTE: This implementation has some nasty coding style in order to
52 // support LinkedHashMap, which extends this.
55 * This class provides a hashtable-backed implementation of the
59 * It uses a hash-bucket approach; that is, hash collisions are handled
60 * by linking the new node off of the pre-existing node (or list of
61 * nodes). In this manner, techniques such as linear probing (which
62 * can cause primary clustering) and rehashing (which does not fit very
63 * well with Java's method of precomputing hash codes) are avoided.
66 * Under ideal circumstances (no collisions), HashMap offers O(1)
67 * performance on most operations (<code>containsValue()</code> is,
68 * of course, O(n)). In the worst case (all keys map to the same
69 * hash code -- very unlikely), most operations are O(n).
72 * HashMap is part of the JDK1.2 Collections API. It differs from
73 * Hashtable in that it accepts the null key and null values, and it
74 * does not support "Enumeration views." Also, it is not synchronized;
75 * if you plan to use it in multiple threads, consider using:<br>
76 * <code>Map m = Collections.synchronizedMap(new HashMap(...));</code>
79 * The iterators are <i>fail-fast</i>, meaning that any structural
80 * modification, except for <code>remove()</code> called on the iterator
81 * itself, cause the iterator to throw a
82 * <code>ConcurrentModificationException</code> rather than exhibit
83 * non-deterministic behavior.
85 * @author Jon Zeppieri
86 * @author Jochen Hoenicke
87 * @author Bryce McKinlay
88 * @author Eric Blake (ebb9@email.byu.edu)
89 * @see Object#hashCode()
94 * @see IdentityHashMap
97 * @status updated to 1.4
99 public class HashMap
<K
, V
> extends AbstractMap
<K
, V
>
100 implements Map
<K
, V
>, Cloneable
, Serializable
103 * Default number of buckets. This is the value the JDK 1.3 uses. Some
104 * early documentation specified this value as 101. That is incorrect.
105 * Package visible for use by HashSet.
107 static final int DEFAULT_CAPACITY
= 11;
110 * The default load factor; this is explicitly specified by the spec.
111 * Package visible for use by HashSet.
113 static final float DEFAULT_LOAD_FACTOR
= 0.75f
;
116 * Compatible with JDK 1.2.
118 private static final long serialVersionUID
= 362498820763181265L;
121 * The rounded product of the capacity and the load factor; when the number
122 * of elements exceeds the threshold, the HashMap calls
123 * <code>rehash()</code>.
124 * @serial the threshold for rehashing
126 private int threshold
;
129 * Load factor of this HashMap: used in computing the threshold.
130 * Package visible for use by HashSet.
131 * @serial the load factor
133 final float loadFactor
;
136 * Array containing the actual key-value mappings.
137 * Package visible for use by nested and subclasses.
139 transient HashEntry
<K
, V
>[] buckets
;
142 * Counts the number of modifications this HashMap has undergone, used
143 * by Iterators to know when to throw ConcurrentModificationExceptions.
144 * Package visible for use by nested and subclasses.
146 transient int modCount
;
149 * The size of this HashMap: denotes the number of key-value pairs.
150 * Package visible for use by nested and subclasses.
155 * The cache for {@link #entrySet()}.
157 private transient Set
<Map
.Entry
<K
, V
>> entries
;
160 * Class to represent an entry in the hash table. Holds a single key-value
161 * pair. Package visible for use by subclass.
163 * @author Eric Blake (ebb9@email.byu.edu)
165 static class HashEntry
<K
, V
> extends AbstractMap
.SimpleEntry
<K
, V
>
168 * The next entry in the linked list. Package visible for use by subclass.
170 HashEntry
<K
, V
> next
;
173 * Simple constructor.
175 * @param value the value
177 HashEntry(K key
, V value
)
183 * Called when this entry is accessed via {@link #put(Object, Object)}.
184 * This version does nothing, but in LinkedHashMap, it must do some
185 * bookkeeping for access-traversal mode.
192 * Called when this entry is removed from the map. This version simply
193 * returns the value, but in LinkedHashMap, it must also do bookkeeping.
195 * @return the value of this key as it is removed
204 * Construct a new HashMap with the default capacity (11) and the default
205 * load factor (0.75).
209 this(DEFAULT_CAPACITY
, DEFAULT_LOAD_FACTOR
);
213 * Construct a new HashMap from the given Map, with initial capacity
214 * the greater of the size of <code>m</code> or the default of 11.
217 * Every element in Map m will be put into this new HashMap.
219 * @param m a Map whose key / value pairs will be put into the new HashMap.
220 * <b>NOTE: key / value pairs are not cloned in this constructor.</b>
221 * @throws NullPointerException if m is null
223 public HashMap(Map
<?
extends K
, ?
extends V
> m
)
225 this(Math
.max(m
.size() * 2, DEFAULT_CAPACITY
), DEFAULT_LOAD_FACTOR
);
230 * Construct a new HashMap with a specific inital capacity and
231 * default load factor of 0.75.
233 * @param initialCapacity the initial capacity of this HashMap (>=0)
234 * @throws IllegalArgumentException if (initialCapacity < 0)
236 public HashMap(int initialCapacity
)
238 this(initialCapacity
, DEFAULT_LOAD_FACTOR
);
242 * Construct a new HashMap with a specific inital capacity and load factor.
244 * @param initialCapacity the initial capacity (>=0)
245 * @param loadFactor the load factor (> 0, not NaN)
246 * @throws IllegalArgumentException if (initialCapacity < 0) ||
247 * ! (loadFactor > 0.0)
249 public HashMap(int initialCapacity
, float loadFactor
)
251 if (initialCapacity
< 0)
252 throw new IllegalArgumentException("Illegal Capacity: "
254 if (! (loadFactor
> 0)) // check for NaN too
255 throw new IllegalArgumentException("Illegal Load: " + loadFactor
);
257 if (initialCapacity
== 0)
259 buckets
= (HashEntry
<K
, V
>[]) new HashEntry
[initialCapacity
];
260 this.loadFactor
= loadFactor
;
261 threshold
= (int) (initialCapacity
* loadFactor
);
265 * Returns the number of kay-value mappings currently in this Map.
275 * Returns true if there are no key-value mappings currently in this Map.
277 * @return <code>size() == 0</code>
279 public boolean isEmpty()
285 * Return the value in this HashMap associated with the supplied key,
286 * or <code>null</code> if the key maps to nothing. NOTE: Since the value
287 * could also be null, you must use containsKey to see if this key
288 * actually maps to something.
290 * @param key the key for which to fetch an associated value
291 * @return what the key maps to, if present
292 * @see #put(Object, Object)
293 * @see #containsKey(Object)
295 public V
get(Object key
)
298 HashEntry
<K
, V
> e
= buckets
[idx
];
301 if (equals(key
, e
.key
))
309 * Returns true if the supplied object <code>equals()</code> a key
312 * @param key the key to search for in this HashMap
313 * @return true if the key is in the table
314 * @see #containsValue(Object)
316 public boolean containsKey(Object key
)
319 HashEntry
<K
, V
> e
= buckets
[idx
];
322 if (equals(key
, e
.key
))
330 * Puts the supplied value into the Map, mapped by the supplied key.
331 * The value may be retrieved by any object which <code>equals()</code>
332 * this key. NOTE: Since the prior value could also be null, you must
333 * first use containsKey if you want to see if you are replacing the
336 * @param key the key used to locate the value
337 * @param value the value to be stored in the HashMap
338 * @return the prior mapping of the key, or null if there was none
340 * @see Object#equals(Object)
342 public V
put(K key
, V value
)
345 HashEntry
<K
, V
> e
= buckets
[idx
];
349 if (equals(key
, e
.key
))
351 e
.access(); // Must call this for bookkeeping in LinkedHashMap.
360 // At this point, we know we need to add a new entry.
362 if (++size
> threshold
)
365 // Need a new hash value to suit the bigger table.
369 // LinkedHashMap cannot override put(), hence this call.
370 addEntry(key
, value
, idx
, true);
375 * Copies all elements of the given map into this hashtable. If this table
376 * already has a mapping for a key, the new mapping replaces the current
379 * @param m the map to be hashed into this
381 public void putAll(Map
<?
extends K
, ?
extends V
> m
)
385 addMap
= (Map
<K
,V
>) m
;
386 for (Map
.Entry
<K
,V
> e
: addMap
.entrySet())
388 // Optimize in case the Entry is one of our own.
389 if (e
instanceof AbstractMap
.SimpleEntry
)
391 AbstractMap
.SimpleEntry
<?
extends K
, ?
extends V
> entry
392 = (AbstractMap
.SimpleEntry
<?
extends K
, ?
extends V
>) e
;
393 put(entry
.key
, entry
.value
);
396 put(e
.getKey(), e
.getValue());
401 * Removes from the HashMap and returns the value which is mapped by the
402 * supplied key. If the key maps to nothing, then the HashMap remains
403 * unchanged, and <code>null</code> is returned. NOTE: Since the value
404 * could also be null, you must use containsKey to see if you are
405 * actually removing a mapping.
407 * @param key the key used to locate the value to remove
408 * @return whatever the key mapped to, if present
410 public V
remove(Object key
)
413 HashEntry
<K
, V
> e
= buckets
[idx
];
414 HashEntry
<K
, V
> last
= null;
418 if (equals(key
, e
.key
))
422 buckets
[idx
] = e
.next
;
426 // Method call necessary for LinkedHashMap to work correctly.
436 * Clears the Map so it has no keys. This is O(1).
443 Arrays
.fill(buckets
, null);
449 * Returns true if this HashMap contains a value <code>o</code>, such that
450 * <code>o.equals(value)</code>.
452 * @param value the value to search for in this HashMap
453 * @return true if at least one key maps to the value
454 * @see #containsKey(Object)
456 public boolean containsValue(Object value
)
458 for (int i
= buckets
.length
- 1; i
>= 0; i
--)
460 HashEntry
<K
, V
> e
= buckets
[i
];
463 if (equals(value
, e
.value
))
472 * Returns a shallow clone of this HashMap. The Map itself is cloned,
473 * but its contents are not. This is O(n).
477 public Object
clone()
479 HashMap
<K
, V
> copy
= null;
482 copy
= (HashMap
<K
, V
>) super.clone();
484 catch (CloneNotSupportedException x
)
486 // This is impossible.
488 copy
.buckets
= (HashEntry
<K
, V
>[]) new HashEntry
[buckets
.length
];
489 copy
.putAllInternal(this);
490 // Clear the entry cache. AbstractMap.clone() does the others.
496 * Returns a "set view" of this HashMap's keys. The set is backed by the
497 * HashMap, so changes in one show up in the other. The set supports
498 * element removal, but not element addition.
500 * @return a set view of the keys
504 public Set
<K
> keySet()
507 // Create an AbstractSet with custom implementations of those methods
508 // that can be overridden easily and efficiently.
509 keys
= new AbstractSet
<K
>()
516 public Iterator
<K
> iterator()
518 // Cannot create the iterator directly, because of LinkedHashMap.
519 return HashMap
.this.iterator(KEYS
);
524 HashMap
.this.clear();
527 public boolean contains(Object o
)
529 return containsKey(o
);
532 public boolean remove(Object o
)
534 // Test against the size of the HashMap to determine if anything
535 // really got removed. This is necessary because the return value
536 // of HashMap.remove() is ambiguous in the null case.
538 HashMap
.this.remove(o
);
539 return oldsize
!= size
;
546 * Returns a "collection view" (or "bag view") of this HashMap's values.
547 * The collection is backed by the HashMap, so changes in one show up
548 * in the other. The collection supports element removal, but not element
551 * @return a bag view of the values
555 public Collection
<V
> values()
558 // We don't bother overriding many of the optional methods, as doing so
559 // wouldn't provide any significant performance advantage.
560 values
= new AbstractCollection
<V
>()
567 public Iterator
<V
> iterator()
569 // Cannot create the iterator directly, because of LinkedHashMap.
570 return HashMap
.this.iterator(VALUES
);
575 HashMap
.this.clear();
582 * Returns a "set view" of this HashMap's entries. The set is backed by
583 * the HashMap, so changes in one show up in the other. The set supports
584 * element removal, but not element addition.<p>
586 * Note that the iterators for all three views, from keySet(), entrySet(),
587 * and values(), traverse the HashMap in the same sequence.
589 * @return a set view of the entries
594 public Set
<Map
.Entry
<K
, V
>> entrySet()
597 // Create an AbstractSet with custom implementations of those methods
598 // that can be overridden easily and efficiently.
599 entries
= new AbstractSet
<Map
.Entry
<K
, V
>>()
606 public Iterator
<Map
.Entry
<K
, V
>> iterator()
608 // Cannot create the iterator directly, because of LinkedHashMap.
609 return HashMap
.this.iterator(ENTRIES
);
614 HashMap
.this.clear();
617 public boolean contains(Object o
)
619 return getEntry(o
) != null;
622 public boolean remove(Object o
)
624 HashEntry
<K
, V
> e
= getEntry(o
);
627 HashMap
.this.remove(e
.key
);
637 * Helper method for put, that creates and adds a new Entry. This is
638 * overridden in LinkedHashMap for bookkeeping purposes.
640 * @param key the key of the new Entry
641 * @param value the value
642 * @param idx the index in buckets where the new Entry belongs
643 * @param callRemove whether to call the removeEldestEntry method
644 * @see #put(Object, Object)
646 void addEntry(K key
, V value
, int idx
, boolean callRemove
)
648 HashEntry
<K
, V
> e
= new HashEntry
<K
, V
>(key
, value
);
649 e
.next
= buckets
[idx
];
654 * Helper method for entrySet(), which matches both key and value
657 * @param o the entry to match
658 * @return the matching entry, if found, or null
661 // Package visible, for use in nested classes.
662 final HashEntry
<K
, V
> getEntry(Object o
)
664 if (! (o
instanceof Map
.Entry
))
666 Map
.Entry
<K
, V
> me
= (Map
.Entry
<K
, V
>) o
;
669 HashEntry
<K
, V
> e
= buckets
[idx
];
672 if (equals(e
.key
, key
))
673 return equals(e
.value
, me
.getValue()) ? e
: null;
680 * Helper method that returns an index in the buckets array for `key'
681 * based on its hashCode(). Package visible for use by subclasses.
684 * @return the bucket number
686 final int hash(Object key
)
688 return key
== null ?
0 : Math
.abs(key
.hashCode() % buckets
.length
);
692 * Generates a parameterized iterator. Must be overrideable, since
693 * LinkedHashMap iterates in a different order.
695 * @param type {@link #KEYS}, {@link #VALUES}, or {@link #ENTRIES}
696 * @return the appropriate iterator
698 <T
> Iterator
<T
> iterator(int type
)
700 // FIXME: bogus cast here.
701 return new HashIterator
<T
>(type
);
705 * A simplified, more efficient internal implementation of putAll(). clone()
706 * should not call putAll or put, in order to be compatible with the JDK
707 * implementation with respect to subclasses.
709 * @param m the map to initialize this from
711 void putAllInternal(Map
<?
extends K
, ?
extends V
> m
)
715 addMap
= (Map
<K
,V
>) m
;
717 for (Map
.Entry
<K
,V
> e
: addMap
.entrySet())
722 addEntry(key
, e
.getValue(), idx
, false);
727 * Increases the size of the HashMap and rehashes all keys to new
728 * array indices; this is called when the addition of a new value
729 * would cause size() > threshold. Note that the existing Entry
730 * objects are reused in the new hash table.
732 * <p>This is not specified, but the new size is twice the current size
733 * plus one; this number is not always prime, unfortunately.
735 private void rehash()
737 HashEntry
<K
, V
>[] oldBuckets
= buckets
;
739 int newcapacity
= (buckets
.length
* 2) + 1;
740 threshold
= (int) (newcapacity
* loadFactor
);
741 buckets
= (HashEntry
<K
, V
>[]) new HashEntry
[newcapacity
];
743 for (int i
= oldBuckets
.length
- 1; i
>= 0; i
--)
745 HashEntry
<K
, V
> e
= oldBuckets
[i
];
748 int idx
= hash(e
.key
);
749 HashEntry
<K
, V
> dest
= buckets
[idx
];
750 HashEntry
<K
, V
> next
= e
.next
;
751 e
.next
= buckets
[idx
];
759 * Serializes this object to the given stream.
761 * @param s the stream to write to
762 * @throws IOException if the underlying stream fails
763 * @serialData the <i>capacity</i>(int) that is the length of the
764 * bucket array, the <i>size</i>(int) of the hash map
765 * are emitted first. They are followed by size entries,
766 * each consisting of a key (Object) and a value (Object).
768 private void writeObject(ObjectOutputStream s
) throws IOException
770 // Write the threshold and loadFactor fields.
771 s
.defaultWriteObject();
773 s
.writeInt(buckets
.length
);
775 // Avoid creating a wasted Set by creating the iterator directly.
776 Iterator
<HashEntry
<K
, V
>> it
= iterator(ENTRIES
);
779 HashEntry
<K
, V
> entry
= it
.next();
780 s
.writeObject(entry
.key
);
781 s
.writeObject(entry
.value
);
786 * Deserializes this object from the given stream.
788 * @param s the stream to read from
789 * @throws ClassNotFoundException if the underlying stream fails
790 * @throws IOException if the underlying stream fails
791 * @serialData the <i>capacity</i>(int) that is the length of the
792 * bucket array, the <i>size</i>(int) of the hash map
793 * are emitted first. They are followed by size entries,
794 * each consisting of a key (Object) and a value (Object).
796 private void readObject(ObjectInputStream s
)
797 throws IOException
, ClassNotFoundException
799 // Read the threshold and loadFactor fields.
800 s
.defaultReadObject();
802 // Read and use capacity, followed by key/value pairs.
803 buckets
= (HashEntry
<K
, V
>[]) new HashEntry
[s
.readInt()];
804 int len
= s
.readInt();
808 Object key
= s
.readObject();
809 addEntry((K
) key
, (V
) s
.readObject(), hash(key
), false);
814 * Iterate over HashMap's entries.
815 * This implementation is parameterized to give a sequential view of
816 * keys, values, or entries.
818 * @author Jon Zeppieri
820 private final class HashIterator
<T
> implements Iterator
<T
>
823 * The type of this Iterator: {@link #KEYS}, {@link #VALUES},
824 * or {@link #ENTRIES}.
826 private final int type
;
828 * The number of modifications to the backing HashMap that we know about.
830 private int knownMod
= modCount
;
831 /** The number of elements remaining to be returned by next(). */
832 private int count
= size
;
833 /** Current index in the physical hash table. */
834 private int idx
= buckets
.length
;
835 /** The last Entry returned by a next() call. */
836 private HashEntry last
;
838 * The next entry that should be returned by next(). It is set to something
839 * if we're iterating through a bucket that contains multiple linked
840 * entries. It is null if next() needs to find a new bucket.
842 private HashEntry next
;
845 * Construct a new HashIterator with the supplied type.
846 * @param type {@link #KEYS}, {@link #VALUES}, or {@link #ENTRIES}
848 HashIterator(int type
)
854 * Returns true if the Iterator has more elements.
855 * @return true if there are more elements
857 public boolean hasNext()
863 * Returns the next element in the Iterator's sequential view.
864 * @return the next element
865 * @throws ConcurrentModificationException if the HashMap was modified
866 * @throws NoSuchElementException if there is none
870 if (knownMod
!= modCount
)
871 throw new ConcurrentModificationException();
873 throw new NoSuchElementException();
890 * Removes from the backing HashMap the last element which was fetched
891 * with the <code>next()</code> method.
892 * @throws ConcurrentModificationException if the HashMap was modified
893 * @throws IllegalStateException if called when there is no last element
897 if (knownMod
!= modCount
)
898 throw new ConcurrentModificationException();
900 throw new IllegalStateException();
902 HashMap
.this.remove(last
.key
);