Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 352 Bytes

File metadata and controls

21 lines (16 loc) · 352 Bytes

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