From charlesreid1

Revision as of 06:30, 3 June 2017 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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