State the different types of linked lists?



State the different types of linked lists?..

Answer / Vandna Arya

1. Singly Linked List: Each node contains a data part and a single link to the next node.
2. Doubly Linked List: Each node contains a data part, a link to the next node, and a link to the previous node.
3. Circular Linked List: The last node's next pointer points back to the first node, forming a cycle.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Data Structures Interview Questions

What is declaring array?

1 Answers  


What is data structure and why we need them?

1 Answers  


Why is data structure used?

1 Answers  


How does a selection sort work for an array?

1 Answers  


Is array immutable?

1 Answers  


In what areas do data structures are applied?

1 Answers  


Is array a data type?

1 Answers  


What is dynamic data structure?

2 Answers  


How to fill element (initialize at once) in an array?

1 Answers  


How does a binary search work?

1 Answers  


What does args stand for?

1 Answers  


Explain in brief a linked list.

1 Answers  


Categories