File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Binary Search Tree
2
- ( Binary trees become truly useful for searching when you balance them)
2
+ ** Statement: Binary trees become truly useful for searching when you balance them**
3
3
4
4
** What kind of problems are commonly solved via binary search tree:**
5
5
6
- - Commonly used in search applications having data entering/leaving in a constant way (e.g., * map* /* set* objects languages libraries.
7
- - Build binary heaps where higher keys are above or equal to lower ones rather than to the left of (or below or equal to and right).
6
+ - Used in search applications having data entering/leaving in a constant way (e.g., * map* /* set* objects languages libraries.
7
+ - Binary heaps where higher keys are above or equal to lower ones rather than to the left of (or below or equal to and right).
8
8
- Hash trees, similar to hash tables.
9
9
- Implementing routing table in router.
10
10
- To solve database problem such as indexing.
You can’t perform that action at this time.
0 commit comments