Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    Or, y'know, you could just use a binary tree. Commented Jul 6, 2021 at 2:34
  • 1
    This. If your buckets are getting so big that you need a more complex data structure than a list, it means that your hash function is bad. The fix for a bad hash function is not to make your buckets more complex, it is to fix the hash function. Commented Jul 6, 2021 at 6:31