This directory contains work done under the 0x1D. C - Binary trees project.
The binary tree is a non-linear abstract data structure that contains nodes arranged in a hierarchical manner where each node can have a maximum of two children.
Traversal of a binary tree can be done in three ways:
- In-order: left -> root -> right
- Pre-order: root -> left -> right
- Post-order: left -> right -> root
To clone this repository, use the following command:
$ git clone git@github.com:Ogoa/binary_trees.git
Once you have cloned it, navigate into the directory using the command:
$ cd binary_trees
From there, you can execute any of the files.