https://github.com/cpplawyer/simpel-binary-search-tree
https://github.com/cpplawyer/simpel-binary-search-tree
binary-search-tree cplusplus
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cpplawyer/simpel-binary-search-tree
- Owner: cppLawyer
- License: gpl-3.0
- Created: 2022-02-18T17:09:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-06T11:07:02.000Z (over 3 years ago)
- Last Synced: 2025-01-14T01:10:31.242Z (about 1 year ago)
- Topics: binary-search-tree, cplusplus
- Language: C++
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# binary-search-tree-C-plus-plus
- Made safe and robust
- The everything is set on the stack if you like you can edit it to be on the heap
Example:
```
node base;
//base node
base.insert(std::move(node(212)));
//insert with std::move(number)
base.remove(212);
//to remove a element
base.search(757)
//to search in the binary tree returns a boolean of true if found else false
```