Skip to content

Files

Latest commit

 

History

History

data-structures

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Build

To build a specific data structure, run the following command:

make TARGET=<file_name_without_extension>

The available implementations are:

  • dynamic_array
  • singly_linked_list

For example, to build the dynamic array file, run:

make TARGET=dynamic_array

To clean up the build files, run:

make clean