Data Structures Question:
Download Questions PDF

What is Linked List in data structure?

Data Structures Interview Question
Data Structures Interview Question

Answer:

Linked List is one of the fundamental data structures. It consists of a sequence of nodes, each containing arbitrary data fields and one or two (”links”) pointing to the next and/or previous nodes. A linked list is a self-referential datatype because it contains a pointer or link to another data of the same type. Linked lists permit insertion and removal of nodes at any point in the list in constant time, but do not allow random access.

Download Data Structures Interview Questions And Answers PDF

Previous QuestionNext Question
What does each entry in the Link List called?What member function places a new node at the end of the linked list?