By RafaelZin
via code2learn.com
Published: Feb 13 2013 / 08:38
binary search tree (BST), which may sometimes also be called an ordered or sorted binary tree, is a node-based binary tree data structure which has the following properties: * The left subtree of a node contains only nodes with keys less than the node's key. * The right subtree of a node contains only nodes with keys greater than the node's key. * Both the left and right subtrees must also be binary search trees. * There must be no duplicate nodes.
Tweet
SaveShareSend
Tags: java, methodology, other languages
Add your comment