Anonymous

What is linked list? Mention its advantages and disadvantages. What are the operations of the liked list?

1

1 Answers

Sonya P. Profile
Sonya P. answered

A linked list is a dara structureconsisting of a group of nodes which together represent a sequence.

Advantages:

- is a dynamic data structure;

- linear data structures are easily executed with it;

- can reduce access time.

Disadvantages:

-  tendency to waste memory;

- nodes are stored incontiguously.

Types of operations: Linearly linked lists and circularly linked lists.

Answer Question

Anonymous