1.

What is the advantage of using linked list over the doubly linked list for chaining?(a) it takes less memory(b) it causes more collisions(c) it makes the process of insertion and deletion faster(d) it causes less collisionsThe query is from Hash Tables topic in division Hash Tables of Data Structures & Algorithms IThe question was posed to me in homework.

Answer»

The correct choice is (a) it takes less memory

Easy explanation - SINGLY linked list takes LESSER space as compared to DOUBLY linked list. But the time COMPLEXITY of the singly linked list is more than a doubly linked list.



Discussion

No Comment Found

Related InterviewSolutions