Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

2D LinkedList

This is an dynamic 2D array that is build on linkedlists.
The base is that we have a list of pointer that are pointing to lists of linkedlists.
Basic idea is to treat this like a normal 2d array , but it takes less space than a 2d array.