1.

What Is A Linked List? Explain Its Applications ?

Answer»

A Linked list is a linear data structure similar to an array, which is used to store the data in an ORGANIZED way.

In Linked list data elements are not stored in contiguous blocks.

 Applications of the Linked list:

  • A linked list can be used for IMPLEMENTATIONS of stacks and queues.
  • Implementation of graphs can be done USING the linked list
  • A linked list can be used for dynamic memory allocation
  • A linked list can be used for implementation of graph
  • It can be used for performing arithmetic operations on long integers.
  • A linked list can be used with the music PLAYER for playing the songs.

A Linked list is a linear data structure similar to an array, which is used to store the data in an organized way.

In Linked list data elements are not stored in contiguous blocks.

 Applications of the Linked list:



Discussion

No Comment Found