https://github.com/wintercore/tree-shenanigans
https://github.com/wintercore/tree-shenanigans
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wintercore/tree-shenanigans
- Owner: WinterCore
- Created: 2020-08-18T07:58:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T14:52:31.000Z (almost 6 years ago)
- Last Synced: 2025-04-09T01:45:03.909Z (about 1 year ago)
- Language: C
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.