SoorajModi / DataStructures

Data Structures written in C
MIT License
0 stars 0 forks source link

Data Structures

The following are a list of Data Structures written in C. Some of the APIs are dependent on each other.

You can view the source code under src, and the header files under include.

How to Run

To compile CMakeList: cmake .

To compile makefile: make

To run executable: ./bin/a.out

Dependencies

All external dependencies are placed in the lib directory.

Unity v2.5.2: a C testing library. You can find the documentation here

API

Linked List API

Singly Linked List API

Queue API (Requires Linked List API)

Stack API (Requires Singly Linked List API)

Binary Tree API

Graph API