IdentityHashMap.html
http://www.28im.com/java/a757966.html
bitops
URL_URI_URN
load factor = 2 / 3
max = capacity * $(load factor)
table[2i] = key
table[2i+1] = value
linear probing
private static int hash(Object x, int length) { |
public V put(K key, V value) { |