net.java.truecommons.shed.HashMaps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truecommons-shed Show documentation
Show all versions of truecommons-shed Show documentation
Hosts small but useful tools and utilities that didn't fit anywhere else.
/*
* Copyright (C) 2005-2012 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truecommons.shed;
import javax.annotation.concurrent.Immutable;
/**
* Static utility methods for hash maps.
*
* @author Christian Schlichtherle
*/
@Immutable
public final class HashMaps {
/**
* The number of entries which should be additionally accomodatable by a
* hash map with a load factor of 75% before resizing it, which is {@value}.
* When a new hash map gets created, this constant should get used in order
* to compute the initial capacity or overhead for additional entries.
*
* @see #initialCapacity(int)
*/
public static final int OVERHEAD_SIZE = (64 - 1) * 3 / 4; // consider 75% load factor
private HashMaps() { }
/**
* Returns the initial capacity for a hash table with a load factor of 75%.
*
* @param size the number of entries to accommodate space for.
* @return The initial capacity for a hash table with a load factor of 75%.
* @see #OVERHEAD_SIZE
*/
public static int initialCapacity(int size) {
if (size < OVERHEAD_SIZE)
size = OVERHEAD_SIZE;
final long capacity = size * 4L / 3 + 1;
return Integer.MAX_VALUE >= capacity
? powerOfTwo((int) capacity)
: Integer.MAX_VALUE; // not very realistic
}
// "Borrowed" from Scala's HashTable.
private static int powerOfTwo(int c) {
/* See http://bits.stephan-brumme.com/roundUpToNextPowerOfTwo.html */
c--;
c |= c >>> 1;
c |= c >>> 2;
c |= c >>> 4;
c |= c >>> 8;
c |= c >>> 16;
return c + 1;
}
}