负载因子(load factor),它用来衡量哈希表的 空/满 程度,一定程度上也可以体现查询的效率,计算公式为: The ratio of the number of elements in the hash table to the table size iscalled the load factor. Studies have shown that hash table performance is bestwhen the load factor is 1.0, or when the
先附源码: package java.util; import java.io.*; /** * This class implements a hash table, which maps keys to values. Any * non-<code>null</code> object can be used as a key or as a value. <p> * * To successfully store and retrieve objects fro