How many hash buckets

前端 未结 5 787
刺人心
刺人心 2021-01-31 10:29

If I notice that a hash table (or any other data structure built on a hash table) is filling up, at what point should you build a new table with more buckets. And given n items

5条回答
  •  终归单人心
    2021-01-31 11:07

    If you use Linear Hashing, the table itself automatically takes care of resizing, by maintaining a constant load factor.

提交回复
热议问题