From charlesreid1

Two main types of lists:

  • contiguous memory lists - data is stored in a contiguous block of memory using an array
  • linked memory lists - data is stored as a set of references or links to locations in memory where the data live

See Linked Lists and ArrayLists


Flags