About 84,100 results
Open links in new tab
  1. terminology - What exactly (and precisely) is "hash?" - Computer ...

    Apr 5, 2016 · What is a hash? "Hash" is really a broad term with different formal meanings in different contexts. There is not a single perfect answer to your question. I will explain the …

  2. Hash size: Are prime numbers "near" powers of two a poor choice …

    Hash size: Are prime numbers "near" powers of two a poor choice for the modulus? Ask Question Asked 7 years, 11 months ago Modified 5 years, 7 months ago

  3. Time complexity analysis for Searching in a Hash table

    Sep 21, 2022 · 0 I want to analyse the time complexity for Unsuccesful search using probabilistic method in a Hash table where collisions are resolved by chaining through a doubly linked list. …

  4. For what kind of data are hash table operations O (1)?

    Hash table techniques that pick-a-new-function-and-rehash in order to guarantee O (1) lookups, even in the worst case, include: cuckoo hashing guarantees that each key lookup succeeds …

  5. Confusion with analysis of hashing with chaining

    Mar 2, 2016 · I was attending a class on analysis of hash tables implemented using chaining, and the professor said that: In a hash table in which collisions are resolved by chaining, an search …

  6. What is the advantage of separate chaining over open addressing?

    6 Hash tables resolve collisions through two mechanisms: separate chaining or open hashing and open addressing or closed hashing. Though the first method uses lists (or other fancier data …

  7. Separate Chaining hashing: time complexity of successful search

    Apr 24, 2020 · In a simple uniform hashing with chaining collision, the time complexity of a successful search is: $Θ (1 + (1 + \frac {α} {2} - \frac {α} {2n}))$ where $α=\frac {n} {m}$, but I …

  8. How are hash table's values stored physically in memory?

    So you're saying hash tables are created with an estimated potential size and the items are only relocated when you need to increase the size... So it doesn't matter if a hash function has …

  9. Collision resistant hash function - Computer Science Stack Exchange

    Collision resistant hash function Ask Question Asked 12 years, 10 months ago Modified 12 years, 10 months ago

  10. algorithms - What is a good load factor for separate chaining …

    May 8, 2022 · There is actually a very simple answer: Measure. If you cannot measure the difference between different load factors then the whole question is pointless. The actual …