From charlesreid1

(Created page with "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 reference...")
 
No edit summary
Line 2: Line 2:
* contiguous memory lists - data is stored in a contiguous block of memory using an array
* 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
* linked memory lists - data is stored as a set of references or links to locations in memory where the data live
=Flags=
{{DataStructuresFlag}}
[[Category:Lists]]
[[Category:Linked Lists]]
[[Category:Array Lists]]

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


Flags