An advantage of chained hash table (external hashing) over the open addressing…

2022

An advantage of chained hash table (external hashing) over the open addressing scheme is –

Answer: C. Deletion is easierChained hashing uses linked lists to handle collisions, allowing direct removal of elements from the list. In contrast, open addressing requires special…

  1. A.

    Worst case complexity of search operations is less

  2. B.

    Space used is less

  3. C.

    Deletion is easier

  4. D.

    None of the above

Attempted by 824 students.

Show answer & explanation

Correct answer: C

Chained hashing uses linked lists to handle collisions, allowing direct removal of elements from the list. In contrast, open addressing requires special handling for deleted elements (e.g., marking slots as 'deleted') to maintain search integrity. This makes deletion simpler and more efficient in chained hashing, as no reorganization of the table is needed.

Explore the full course: Bpsc

Loading lesson…