IGATE Interview Question

What do you know about Linked List in data Structure ?

Interview Answer

Anonymous

Jun 10, 2012

a linked list is a data structure consisting of a group of nodes which together represent a sequence.Each node is composed of a datum and a reference (in other words, a link).Allows for efficient insertion or removal of elements from any position in the sequence.

1