Definition

A finite, ordered sequence of data items known as elements

  • By ordered, we mean that there is a 1st element, 2nd element, so on
  • There is no requirement of uniqueness, unlike a Set

Main operations

  • create : new list of certain capacity
  • add, delete
  • traverse (and similar)

Implementation


  • task Add time complexity details
  • task Add adv/disadv