Link list does not have any advantage when compared to an Array.

Skill/Topic: Linked List
A) True
B) False
Explanation: A linked list can grow and shrink in size dynamically at runtime, whereas an array is set to a fixed size at compile time.

Showing Answers 1 - 5 of 5 Answers

samiksc

  • Jan 19th, 2006
 

False: When you dont know in advance how many elements will be there linked list is more suitable than array.

  Was this answer useful?  Yes

Vikram.N

  • Sep 3rd, 2007
 

False: In linked list, items can be inserted anywhere with O(1), while in an array you need to shift certain elements, i.e O(n). Same applies to deletion. Also every node can contain multiple values.

  Was this answer useful?  Yes

FALSE

Advantages of linked list :

1. Insertion and deletion are less costly.
2. Dynamic addition of new elements is possible.
3. Sorting is less costly.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions