Array Benefits Constraints Data access is fast. Good for ordered data, which is not changed or searched frequently. Inefficient if number of elements grow. Inefficient if an element to be inserted in middle of collection. Provides no special search mechanism. Linked List Benefits Constraints Allows efficient inserts/delete at any location Allows arbitrary growth of collection. […]

Read more of this post