Data Structure Linked list Question:
Download Job Interview Questions and Answers PDF
What is linked list?
Answer:
A linked list is a chain of nodes. Each and every node has at least two nodes, one is the data and other is the link to the next node. These linked lists are known as single linked lists as they have only one pointer to point to the next node. If a linked list has two nodes, one is to point to the previous node and the other is to point to the next node, then the linked list is known as doubly linked list.
Download Linked list Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell me about circular linked list? | By using C++ with an example describe linked list? |