Linkedlist

All Questions

Asked by: Zoha Tazmen

What is a linked list?

Answers (1)

A linked list is a linear data structure where each element (node) contains two parts: the data and a reference (link) to the next node in the sequence.

Answered by: Zoha Tazmen

Zoha Tazmen:

It is useful for dynamic memory allocation and efficient insertion/deletion of elements.

Your Answer