Data Structures

Documenting my progress in data structures using Python and C

Prerequisite

Before starting, you have to install:

How to run?

After you've installed all the tools, you're ready to run the code

Running python code

  • Access the folder with the python code and run:
$ python3 main.py

Running C code

  • Acces the folder with the C code and run:
# Make the build folder and access it
$ mkdir build && cd build

# Execute CMake
$ cmake ..

# Compiling
$ make

# test
$ ./main

Technologies