From charlesreid1

No edit summary
No edit summary
 
Line 3: Line 3:
* linked memory lists - data is stored as a set of references or links to locations in memory where the data live
* 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]]





Latest revision as of 06:30, 3 June 2017

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