Wednesday, 18 October 2017

Arrays vs. Linked list


ARRAYS VS. LINKED LIST
  1. Arrays are of fixed size, Not for Linked list
  2. Random access is not allowed in Linked list
  3. Extra memory needed in Linked list to store pointer to next element
  4. Insertion and deletion elements in arrays are expensive than Linked list

No comments:

Post a Comment

Note: only a member of this blog may post a comment.