Binary Search Trees
Jump to navigation
Jump to search
Internal
Overview
A binary search tree is a binary tree that has the Binary Search Tree Property. A binary search tree is represented in memory using three pointers: left child, right child and the parent. More details on binary tree representation in memory are available here: