Data Structures Question: Download Data Structures PDF

What is Linked List in data structure?

Tweet Share WhatsApp

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 PDF Read All 48 Data Structures Questions
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?