Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olubodemichael/project-5
C++ implementation of a binary search tree (BST) where nodes have at most two children ("left" and "right"). The left child contains values smaller than the node, and the right child contains values greater. Enables efficient search, insertion, and deletion of elements.
https://github.com/olubodemichael/project-5
Last synced: 1 day ago
JSON representation
C++ implementation of a binary search tree (BST) where nodes have at most two children ("left" and "right"). The left child contains values smaller than the node, and the right child contains values greater. Enables efficient search, insertion, and deletion of elements.
- Host: GitHub
- URL: https://github.com/olubodemichael/project-5
- Owner: OlubodeMichael
- Created: 2023-11-27T20:28:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-27T20:28:46.000Z (about 1 year ago)
- Last Synced: 2024-11-14T14:15:26.549Z (2 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project-5
C++ implementation of a binary search tree (BST) where nodes have at most two children ("left" and "right"). The left child contains values smaller than the node, and the right child contains values greater. Enables efficient search, insertion, and deletion of elements.