Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/abdelwadoudmakh55/binary_trees
- Owner: AbdelwadoudMakh55
- Created: 2023-11-27T07:13:56.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-13T13:37:16.000Z (9 months ago)
- Last Synced: 2024-04-14T04:07:06.561Z (9 months ago)
- Topics: binary-tree
- Language: C
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.