Define linked list. Explain Types of Linked Lists ? 


==> LINKED LIST--

  • Linked List is a linear data structure and it is very common data structure which consists of group of nodes in a sequence which is divided in two parts. Each node consists of its own data and the address of the next node and forms a chain.
  • Linked Lists are used to create trees and graphs.

 ==> Types of Linked Lists--

  1. Singly Linked List
  2. Doubly Linked List
  3. Circular Linked List


Share to whatsapp

More Questions from Data Structures and Algorithms Module 3

Write a function to delete a specified element.


View

6 Write functions to delete node from front and rear end.


View

Explain Representation of Linked List in Memory ? 


View

Define Linked List. Advantages and disadvantages of Linked List ? 


View

Explain sparse matrix representation ? 


View

Explain circular doubly linked list with header node ? 


View

Explain circular doubly linked list ? 


View