-
If someone who is experienced on this topic could please provide me with some clarification on what a binary search tree is and how it applies to modern day programming? I'm not even sure what this is so I'd like to get a general breakdown from someone who knows what it is, thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A binary search tree stores data and retrieves it very efficiently. |
Beta Was this translation helpful? Give feedback.
A binary search tree stores data and retrieves it very efficiently.
The left sub-tree contains nodes whose keys are less than the node’s key value.
The right sub-tree contains nodes whose keys are greater than or equal to the node’s key value. When it comes to modern day programming, binary search trees can make it very easy for programmers to gather and retrieve data easily.