An open API service indexing awesome lists of open source software.

https://github.com/wintercore/tree-shenanigans


https://github.com/wintercore/tree-shenanigans

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Tree Shenanigans

## How to run locally

- Install `make` and `gcc`
- Clone this project by running `git clone https://github.com/WinterCore/tree-shenanigans.git && cd tree-shenanigans`
- Run the code `make && ./bin/main`

## This project contains the following

- Min heap implementation using arrays.
- Min heap implementation using nodes.
- Different types of tree Traversals (Inorder, Preorder, Postorder, Breadth-First).
- Queue implementation using nodes.