Aller au contenu principal

Binary search tree


Binary search tree


In computer science, a binary search tree (BST), also called an ordered or sorted binary tree, is a rooted binary tree data structure with the key of each internal node being greater than all the keys in the respective node's left subtree and less than the ones in its right subtree. The time complexity of operations on the binary search tree is linear with respect to the height of the tree.

Binary search trees allow binary search for fast lookup, addition, and removal of data items. Since the nodes in a BST are laid out so that each comparison skips about half of the remaining tree, the lookup performance is proportional to that of binary logarithm. BSTs were devised in the 1960s for the problem of efficient storage of labeled data and are attributed to Conway Berners-Lee and David Wheeler.

The performance of a binary search tree is dependent on the order of insertion of the nodes into the tree since arbitrary insertions may lead to degeneracy; several variations of the binary search tree can be built with guaranteed worst-case performance. The basic operations include: search, traversal, insert and delete. BSTs with guaranteed worst-case complexities perform better than an unsorted array, which would require linear search time.

The complexity analysis of BST shows that, on average, the insert, delete and search takes O ( log n ) {\displaystyle O(\log n)} for n {\displaystyle n} nodes. In the worst case, they degrade to that of a singly linked list: O ( n ) {\displaystyle O(n)} . To address the boundless increase of the tree height with arbitrary insertions and deletions, self-balancing variants of BSTs are introduced to bound the worst lookup complexity to that of the binary logarithm. AVL trees were the first self-balancing binary search trees, invented in 1962 by Georgy Adelson-Velsky and Evgenii Landis.

Binary search trees can be used to implement abstract data types such as dynamic sets, lookup tables and priority queues, and used in sorting algorithms such as tree sort.

The binary search tree algorithm was discovered independently by several researchers, including P.F. Windley, Andrew Donald Booth, Andrew Colin, Thomas N. Hibbard. The algorithm is attributed to Conway Berners-Lee and David Wheeler, who used it for storing labeled data in magnetic tapes in 1960. One of the earliest and popular binary search tree algorithm is that of Hibbard.

The time complexities of a binary search tree increases boundlessly with the tree height if the nodes are inserted in an arbitrary order, therefore self-balancing binary search trees were introduced to bound the height of the tree to O ( log n ) {\displaystyle O(\log n)} . Various height-balanced binary search trees were introduced to confine the tree height, such as AVL trees, Treaps, and red–black trees.

The AVL tree was invented by Georgy Adelson-Velsky and Evgenii Landis in 1962 for the efficient organization of information. It was the first self-balancing binary search tree to be invented.

A binary search tree is a rooted binary tree in which nodes are arranged in strict total order in which the nodes with keys greater than any particular node A is stored on the right sub-trees to that node A and the nodes with keys equal to or less than A are stored on the left sub-trees to A, satisfying the binary search property.: 298 : 287 

Binary search trees are also efficacious in sortings and search algorithms. However, the search complexity of a BST depends upon the order in which the nodes are inserted and deleted; since in worst case, successive operations in the binary search tree may lead to degeneracy and form a singly linked list (or "unbalanced tree") like structure, thus has the same worst-case complexity as a linked list.: 299-302 

Binary search trees are also a fundamental data structure used in construction of abstract data structures such as sets, multisets, and associative arrays.

Searching in a binary search tree for a specific key can be programmed recursively or iteratively.

Searching begins by examining the root node. If the tree is nil, the key being searched for does not exist in the tree. Otherwise, if the key equals that of the root, the search is successful and the node is returned. If the key is less than that of the root, the search proceeds by examining the left subtree. Similarly, if the key is greater than that of the root, the search proceeds by examining the right subtree. This process is repeated until the key is found or the remaining subtree is nil {\displaystyle {\text{nil}}} . If the searched key is not found after a nil {\displaystyle {\text{nil}}} subtree is reached, then the key is not present in the tree.: 290–291 

The following pseudocode implements the BST search procedure through recursion.: 290 

The recursive procedure continues until a nil {\displaystyle {\text{nil}}} or the key {\displaystyle {\text{key}}} being searched for are encountered.

The recursive version of the search can be "unrolled" into a while loop. On most machines, the iterative version is found to be more efficient.: 291 

Since the search may proceed till some leaf node, the running time complexity of BST search is O ( h ) {\displaystyle O(h)} where h {\displaystyle h} is the height of the tree. However, the worst case for BST search is O ( n ) {\displaystyle O(n)} where n {\displaystyle n} is the total number of nodes in the BST, because an unbalanced BST may degenerate to a linked list. However, if the BST is height-balanced the height is O ( log n ) {\displaystyle O(\log n)} .: 290 

For certain operations, given a node x {\displaystyle {\text{x}}} , finding the successor or predecessor of x {\displaystyle {\text{x}}} is crucial. Assuming all the keys of a BST are distinct, the successor of a node x {\displaystyle {\text{x}}} in a BST is the node with the smallest key greater than x {\displaystyle {\text{x}}} 's key. On the other hand, the predecessor of a node x {\displaystyle {\text{x}}} in a BST is the node with the largest key smaller than x {\displaystyle {\text{x}}} 's key. The following pseudocode finds the successor and predecessor of a node x {\displaystyle {\text{x}}} in a BST.: 292–293 

Operations such as finding a node in a BST whose key is the maximum or minimum are critical in certain operations, such as determining the successor and predecessor of nodes. Following is the pseudocode for the operations.: 291–292 

Operations such as insertion and deletion cause the BST representation to change dynamically. The data structure must be modified in such a way that the properties of BST continue to hold. New nodes are inserted as leaf nodes in the BST.: 294–295  Following is an iterative implementation of the insertion operation.: 294 

The procedure maintains a "trailing pointer" y {\displaystyle {\text{y}}} as a parent of x {\displaystyle {\text{x}}} . After initialization on line 2, the while loop along lines 4-11 causes the pointers to be updated. If y {\displaystyle {\text{y}}} is nil {\displaystyle {\text{nil}}} , the BST is empty, thus z {\displaystyle {\text{z}}} is inserted as the root node of the binary search tree T {\displaystyle {\text{T}}} , if it is not nil {\displaystyle {\text{nil}}} , insertion proceeds by comparing the keys to that of y {\displaystyle {\text{y}}} on the lines 15-19 and the node is inserted accordingly.: 295 

The deletion of a node, say Z {\displaystyle {\text{Z}}} , from the binary search tree BST {\displaystyle {\text{BST}}} has three cases:: 295-297 

  1. If Z {\displaystyle {\text{Z}}} is a leaf node, the parent node of Z {\displaystyle {\text{Z}}} gets replaced by NIL {\displaystyle {\text{NIL}}} and consequently Z {\displaystyle {\text{Z}}} is removed from the BST {\displaystyle {\text{BST}}} , as shown in (a).
  2. If Z {\displaystyle {\text{Z}}} has only one child, the child node of Z {\displaystyle {\text{Z}}} gets elevated by modifying the parent node of Z {\displaystyle {\text{Z}}} to point to the child node, consequently taking Z {\displaystyle {\text{Z}}} 's position in the tree, as shown in (b) and (c).
  3. If Z {\displaystyle {\text{Z}}} has both left and right children, the successor of Z {\displaystyle {\text{Z}}} , say Y {\displaystyle {\text{Y}}} , displaces Z {\displaystyle {\text{Z}}} by following the two cases:
    1. If Y {\displaystyle {\text{Y}}} is Z {\displaystyle {\text{Z}}} 's right child, as shown in (d), Y {\displaystyle {\text{Y}}} displaces Z {\displaystyle {\text{Z}}} and Y {\displaystyle {\text{Y}}} 's right child remain unchanged.
    2. If Y {\displaystyle {\text{Y}}} lies within Z {\displaystyle {\text{Z}}} 's right subtree but is not Z {\displaystyle {\text{Z}}} 's right child, as shown in (e), Y {\displaystyle {\text{Y}}} first gets replaced by its own right child, and then it displaces Z {\displaystyle {\text{Z}}} 's position in the tree.

The following pseudocode implements the deletion operation in a binary search tree.: 296-298 

The BST-Delete {\displaystyle {\text{BST-Delete}}} procedure deals with the 3 special cases mentioned above. Lines 2-3 deal with case 1; lines 4-5 deal with case 2 and lines 6-16 for case 3. The helper function Shift-Nodes {\displaystyle {\text{Shift-Nodes}}} is used within the deletion algorithm for the purpose of replacing the node u {\displaystyle {\text{u}}} with v {\displaystyle {\text{v}}} in the binary search tree BST {\displaystyle {\text{BST}}} .: 298  This procedure handles the deletion (and substitution) of u {\displaystyle {\text{u}}} from BST {\displaystyle {\text{BST}}} .

A BST can be traversed through three basic algorithms: inorder, preorder, and postorder tree walks.: 287 

  • Inorder tree walk: Nodes from the left subtree get visited first, followed by the root node and right subtree. Such a traversal visits all the nodes in the order of non-decreasing key sequence.
  • Preorder tree walk: The root node gets visited first, followed by left and right subtrees.
  • Postorder tree walk: Nodes from the left subtree get visited first, followed by the right subtree, and finally, the root.

Following is a recursive implementation of the tree walks.: 287–289 

Without rebalancing, insertions or deletions in a binary search tree may lead to degeneration, resulting in a height n {\displaystyle n} of the tree (where n {\displaystyle n} is number of items in a tree), so that the lookup performance is deteriorated to that of a linear search. Keeping the search tree balanced and height bounded by O ( log n ) {\displaystyle O(\log n)} is a key to the usefulness of the binary search tree. This can be achieved by "self-balancing" mechanisms during the updation operations to the tree designed to maintain the tree height to the binary logarithmic complexity.: 50 

A tree is height-balanced if the heights of the left sub-tree and right sub-tree are guaranteed to be related by a constant factor. This property was introduced by the AVL tree and continued by the red–black tree.: 50–51  The heights of all the nodes on the path from the root to the modified leaf node have to be observed and possibly corrected on every insert and delete operation to the tree.: 52 

In a weight-balanced tree, the criterion of a balanced tree is the number of leaves of the subtrees. The weights of the left and right subtrees differ at most by 1 {\displaystyle 1} .: 61  However, the difference is bound by a ratio α {\displaystyle \alpha } of the weights, since a strong balance condition of 1 {\displaystyle 1} cannot be maintained with O ( log n ) {\displaystyle O(\log n)} rebalancing work during insert and delete operations. The α {\displaystyle \alpha } -weight-balanced trees gives an entire family of balance conditions, where each left and right subtrees have each at least a fraction of α {\displaystyle \alpha } of the total weight of the subtree.: 62 

There are several self-balanced binary search trees, including T-tree, treap, red-black tree, B-tree, 2–3 tree, and Splay tree.

Binary search trees are used in sorting algorithms such as tree sort, where all the elements are inserted at once and the tree is traversed at an in-order fashion. BSTs are also used in quicksort.

Binary search trees are used in implementing priority queues, using the node's key as priorities. Adding new elements to the queue follows the regular BST insertion operation but the removal operation depends on the type of priority queue:

  • If it is an ascending order priority queue, removal of an element with the lowest priority is done through leftward traversal of the BST.
  • If it is a descending order priority queue, removal of an element with the highest priority is done through rightward traversal of the BST.
  •  This article incorporates public domain material from Paul E. Black. "Binary Search Tree". Dictionary of Algorithms and Data Structures. NIST.
  • Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford (2001). "12: Binary search trees, 15.5: Optimal binary search trees". Introduction to Algorithms (2nd ed.). MIT Press. pp. 253–272, 356–363. ISBN 0-262-03293-7.
  • Jarc, Duane J. (3 December 2005). "Binary Tree Traversals". Interactive Data Structure Visualizations. University of Maryland. Archived from the original on 27 February 2014. Retrieved 30 April 2006.
  • Knuth, Donald (1997). "6.2.2: Binary Tree Searching". The Art of Computer Programming. Vol. 3: "Sorting and Searching" (3rd ed.). Addison-Wesley. pp. 426–458. ISBN 0-201-89685-0.
  • Long, Sean. "Binary Search Tree" (PPT). Data Structures and Algorithms Visualization-A PowerPoint Slides Based Approach. SUNY Oneonta.
  • Parlante, Nick (2001). "Binary Trees". CS Education Library. Stanford University. Archived from the original on 2022-01-30.
  • Ben Pfaff: An Introduction to Binary Search Trees and Balanced Trees. (PDF; 1675 kB) 2004.
  • Binary Tree Visualizer (JavaScript animation of various BT-based data structures)

Text submitted to CC-BY-SA license. Source: Binary search tree by Wikipedia (Historical)