Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anishsinha-io/binarysearchtree
implements binary search tree, breadth first traversal algorithms, depth first traversal algorithms (both iterative and recursive), and search
https://github.com/anishsinha-io/binarysearchtree
Last synced: about 1 month ago
JSON representation
implements binary search tree, breadth first traversal algorithms, depth first traversal algorithms (both iterative and recursive), and search
- Host: GitHub
- URL: https://github.com/anishsinha-io/binarysearchtree
- Owner: anishsinha-io
- Created: 2022-01-10T07:28:43.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T05:47:21.000Z (about 3 years ago)
- Last Synced: 2024-11-08T12:18:02.821Z (3 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Binary Search Trees
This repository contains an implementation for a binary search tree, as well as algorithms for breadth first traversal
and depth first traversal. For depth first traversal, both iterative and recursive solutions are implemented. Search (
obviously) is also implemented.