KUMAR SHIVAM

Define linked list. Explain Types of Linked Lists ? 

Data Structures and Algorithms

Answer in Short

A linked list is a sequence of data structures, which are connected together via links ... Type of linked list are :- Singly Linked List, Doubly Linked List, Circular Linked List ... Click to view full answer

Explanation

966    0

==> 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:   

More Questions from Data Structures and Algorithms Module 3