Binary search tree

The binary search tree is a binary tree which holds ordered data. The ordering rule is as follows:

the value in each node is greater than the value in its left child and less than the value in its right child.

Binary search tree The binary search tree is a binary tree which holds ordered data. The ordering rule is as follows: the value in each node is greater than the value in its left child and less than the value in its right child .

Binary Search Tree

By Ivan Todorov

Binary Search Tree

  • 1,227