Definitions for "Binary Search Tree" Add To Word List
Login or Register  | Word Lists | Search History

Keywords: Subtree, Node, Tree, Left, Inorder
binary tree that has been labelled with numbers so that the right offspring and all of its descendants have labels smaller than the label of the vertex, and the left offspring and all its descendants have labels larger than that of the vertex. .
Helpful?           0
a binary tree in which the data in the nodes is ordered in a particular way
Helpful?           0
a binary tree in which the value stored at each node of the tree is greater than the values stored in its left subtree and less than the values stored in its right subtree
Helpful?           0
a binary tree where every node has a value, every node 's left subtree has values less than the node's value, and every right subtree has values greater
Helpful?           0
a binary tree where for each node v , the item stored at v is greater than or equal to the item stored at the left child (if any) of v , and is less than or equal to the the item stored at the right child (if any) of v
Helpful?           0
a binary tree whose left subtree contains values less than itself, and whose right subtree contains values greater than itself
Helpful?           0
a binary tree with more constraints
Helpful?           0
a collection that is made up of a set of nodes
Helpful?           0
a tree in which each node stores a key/value pair
Helpful?           0
a usual binary tree with each of its nodes being able to have two children, a left and a right child
Helpful?           0
a data structure with in which every node refers to a left subtree and a right subtree such that all values in the left subtree are smaller than the value in the node and all elements in the right subtree are greater than (or equal to) the value in the node. the top node is called the root. the nodes with no children (left and right subtrees empty) are called leaves.
Helpful?           0
binary tree (see binary tree) with the additional property that the key in each node's left child is less than the node's key, and that the key in each node's right child is greater than the node's key. In inorder traversal (see inorder traversal), the items in a BST are visited in sorted order of their keys.
Helpful?           0