top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the advantages and disadvantages of linked list?

+1 vote
312 views
What are the advantages and disadvantages of linked list?
posted Jul 27, 2017 by Riya Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Advantages of Linked Lists

  • They are a dynamic in nature which allocates the memory when
    required.
  • Linked List can grow and shrink during run time.
  • Insertion and deletion operations can be easily implemented.
  • Stacks and queues can be easily executed

Disadvantages of Linked List

  • The memory is wasted as pointers require extra memory for storage.

  • No element can be accessed randomly, it has to access each node
    sequentially.

  • Reverse Traversing is difficult in linked list.

answer Jul 28, 2017 by Sulekha Kumari
...