Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/abdelwadoudmakh55/binary_trees

Learning binary trees
https://github.com/abdelwadoudmakh55/binary_trees

binary-tree

Last synced: about 2 months ago
JSON representation

Learning binary trees

Awesome Lists containing this project

README

        

## Binary trees
In computer science, a binary tree is a tree data structure in which each node has at most two children, referred to as the left child and the right child.
In this project I learned about binary trees and put my knowledge into practice by implementing algorithms like insertion, deletion, and traversal methods such as inorder, preorder, and postorder traversal.