Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This directory contains work done under the 0x1D. C - Binary trees project.

Overview

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

Cloning the repository

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.

About

A repo created for the Binary Trees project under ALX-SE program.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages