Binary search tree - Wikipedia
Excerpt
From Wikipedia, the free encyclopedia
Binary search tree |
---|
Type |
Invented |
Invented by |
Time complexity in big O notation |
--- |
Operation |
Search |
Insert |
Delete |
Space complexity |
Space |
|
Fig. 1: A binary search tree of size 9 and depth 3, with 8 at the root.
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 for
nodes. In the worst case, they degrade to that of a singly linked list:
. 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.
History[edit]
The binary search tree algorithm was discovered independently by several researchers, including P.F. Windley, Andrew Donald Booth, Andrew Colin, Thomas N. Hibbard.[1][2] The algorithm is attributed to Conway Berners-Lee and David Wheeler, who used it for storing labeled data in magnetic tapes in 1960.[3] One of the earliest and popular binary search tree algorithm is that of Hibbard.[1]
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 .[4] Various height-balanced binary search trees were introduced to confine the tree height, such as AVL trees, Treaps, and redâblack trees.[5]
The AVL tree was invented by Georgy Adelson-Velsky and Evgenii Landis in 1962 for the efficient organization of information.[6][7] It was the first self-balancing binary search tree to be invented.[8]
Overview[edit]
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.[9]:â298ââ[10]:â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.[11][9]:â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.
Operations[edit]
Searching[edit]
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 . If the searched key is not found after a
subtree is reached, then the key is not present in the tree.[10]:â290â291ââ
Recursive search[edit]
The following pseudocode implements the BST search procedure through recursion.[10]:â290ââ
Recursive-Tree-Search(x, key)
<b>if</b> x = NIL <b>or</b> key = x.key <b>then</b>
<b>return</b> x
<b>if</b> key < x.key <b>then</b>
<b>return</b> Recursive-Tree-Search(x.left, key)
<b>else</b>
<b>return</b> Recursive-Tree-Search(x.right, key)
<b>end if</b>
The recursive procedure continues until a or the
being searched for are encountered.
Iterative search[edit]
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.[10]:â291ââ
Iterative-Tree-Search(x, key)
<b>while</b> x â NIL <b>and</b> key â x.key <b>do</b>
<b>if</b> key < x.key <b>then</b>
x := x.left
<b>else</b>
x := x.right
<b>end if</b>
<b>repeat</b>
<b>return</b> x
Since the search may proceed till some leaf node, the running time complexity of BST search is where
is the height of the tree. However, the worst case for BST search is
where
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
.[10]:â290ââ
Successor and predecessor[edit]
For certain operations, given a node , finding the successor or predecessor of
is crucial. Assuming all the keys of a BST are distinct, the successor of a node
in a BST is the node with the smallest key greater than
âs key. On the other hand, the predecessor of a node
in a BST is the node with the largest key smaller than
âs key. The following pseudocode finds the successor and predecessor of a node
in a BST.[12][13][10]:â292â293ââ
BST-Successor(x) if x.right â NIL then return BST-Minimum(x.right) end if y := x.parent while y â NIL and x = y.right do x := y y := y.parent repeat return y | BST-Predecessor(x) if x.left â NIL then return BST-Maximum(x.left) end if y := x.parent while y â NIL and x = y.left do x := y y := y.parent repeat return y |
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.[10]:â291â292ââ
BST-Maximum(x) while x.right â NIL do x := x.right repeat return x | BST-Minimum(x) while x.left â NIL do x := x.left repeat return x |
Insertion[edit]
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.[10]:â294â295ââ Following is an iterative implementation of the insertion operation.[10]:â294ââ
1 BST-Insert(T, z)
2 y := NIL
3 x := T.root
4 <b>while</b> x â NIL <b>do</b>
5 y := x
6 <b>if</b> z.key < x.key <b>then</b>
7 x := x.left
8 <b>else</b>
9 x := x.right
10 <b>end if</b>
11 <b>repeat</b>
12 z.parent := y
13 <b>if</b> y = NIL <b>then</b>
14 T.root := z
15 <b>else if</b> z.key < y.key <b>then</b>
16 y.left := z
17 <b>else</b>
18 y.right := z
19 <b>end if</b>
The procedure maintains a âtrailing pointerâ as a parent of
. After initialization on line 2, the while loop along lines 4-11 causes the pointers to be updated. If
is
, the BST is empty, thus
is inserted as the root node of the binary search tree
, if it is not
, insertion proceeds by comparing the keys to that of
on the lines 15-19 and the node is inserted accordingly.[10]:â295ââ
Deletion[edit]
[](https://en.wikipedia.org/wiki/File:BST_node_deletion.png âThe node ââ
UNIQ--postMath-0000001D-QINU
ââ to be deleted has 2 childrenâ)
The deletion of a node, say , from the binary search tree
has three cases:[10]:â295-297ââ
- If
is a leaf node, the parent node of
gets replaced by
and consequently
is removed from the
, as shown in (a).
- If
has only one child, the child node of
gets elevated by modifying the parent node of
to point to the child node, consequently taking
âs position in the tree, as shown in (b) and (c).
- If
has both left and right children, the successor of
, say
, displaces
by following the two cases:
- If
is
âs right child, as shown in (d),
displaces
and
âs right child remain unchanged.
- If
lies within
âs right subtree but is not
âs right child, as shown in (e),
first gets replaced by its own right child, and then it displaces
âs position in the tree.
- If
The following pseudocode implements the deletion operation in a binary search tree.[10]:â296-298ââ
1 BST-Delete(BST, D) 2 if D.left = NIL then 3 Shift-Nodes(BST, D, D.right) 4 else if D.right = NIL then 5 Shift-Nodes(BST, D, D.left) 6 else 7 E := BST-Successor(D) 8 if E.parent â D then 9 Shift-Nodes(BST, E, E.right) 10 E.right := D.right 11 E.right.parent := E 12 end if 13 Shift-Nodes(BST, D, E) 14 E.left := D.left 15 E.left.parent := E 16 end if |
1 Shift-Nodes(BST, u, v) 2 if u.parent = NIL then 3 BST.root := v 4 else if u = u.parent.left then 5 u.parent.left := v 5 else 6 u.parent.right := v 7 end if 8 if v â NIL then 9 v.parent := u.parent 10 end if |
The 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
is used within the deletion algorithm for the purpose of replacing the node
with
in the binary search tree
.[10]:â298ââ This procedure handles the deletion (and substitution) of
from
.
Traversal[edit]
A BST can be traversed through three basic algorithms: inorder, preorder, and postorder tree walks.[10]:â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.[10]:â287â289ââ
Inorder-Tree-Walk(x) if x â NIL then Inorder-Tree-Walk(x.left) visit node Inorder-Tree-Walk(x.right) end if | Preorder-Tree-Walk(x) if x â NIL then visit node Preorder-Tree-Walk(x.left) Preorder-Tree-Walk(x.right) end if | Postorder-Tree-Walk(x) if x â NIL then Postorder-Tree-Walk(x.left) Postorder-Tree-Walk(x.right) visit node end if |
Balanced binary search trees[edit]
Without rebalancing, insertions or deletions in a binary search tree may lead to degeneration, resulting in a height of the tree (where
is number of items in a tree), so that the lookup performance is deteriorated to that of a linear search.[14] Keeping the search tree balanced and height bounded by
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.[4][15]:â50ââ
Height-balanced trees[edit]
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.[15]:â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.[15]:â52ââ
Weight-balanced trees[edit]
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 .[16][15]:â61ââ However, the difference is bound by a ratio
of the weights, since a strong balance condition of
cannot be maintained with
rebalancing work during insert and delete operations. The
-weight-balanced trees gives an entire family of balance conditions, where each left and right subtrees have each at least a fraction of
of the total weight of the subtree.[15]:â62ââ
Types[edit]
There are several self-balanced binary search trees, including T-tree,[17] treap,[18] red-black tree,[19] B-tree,[20] 2â3 tree,[21] and Splay tree.[22]
Examples of applications[edit]
Sort[edit]
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.[23] BSTs are also used in quicksort.[24]
Priority queue operations[edit]
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:[25]
- 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.
See also[edit]
- Search tree
- Join-based tree algorithms
- Optimal binary search tree
- Geometry of binary search trees
- Ternary search tree
References[edit]
- ^ Jump up to: a b Culberson, J.; Munro, J. I. (1 January 1989). âExplaining the Behaviour of Binary Search Trees Under Prolonged Updates: A Model and Simulationsâ. The Computer Journal. 32 (1): 68â69. doi:10.1093/comjnl/32.1.68.
- ^ Culberson, J.; Munro, J. I. (28 July 1986). âAnalysis of the standard deletion algorithms in exact fit domain binary search treesâ. Algorithmica. 5 (1â4). Springer Publishing, University of Waterloo: 297. doi:10.1007/BF01840390. S2CID 971813.
- ^ P. F. Windley (1 January 1960). âTrees, Forests and Rearrangingâ. The Computer Journal. 3 (2): 84. doi:10.1093/comjnl/3.2.84.
- ^ Jump up to: a b Knuth, Donald (1998). âSection 6.2.3: Balanced Treesâ. The Art of Computer Programming (PDF). Vol. 3 (2 ed.). Addison-Wesley. pp. 458â481. ISBN 978-0201896855. Archived (PDF) from the original on 2022-10-09.
- ^ Paul E. Black, âred-black treeâ, in Dictionary of Algorithms and Data Structures [online], Paul E. Black, ed. 12 November 2019. (accessed May 19 2022) from: https://www.nist.gov/dads/HTML/redblack.html
- ^ Myers, Andrew. âCS 312 Lecture: AVL Treesâ. Cornell University, Department of Computer Science. Archived from the original on 27 April 2021. Retrieved 19 May 2022.
- ^ Adelson-Velsky, Georgy; Landis, Evgenii (1962). âAn algorithm for the organization of informationâ. Proceedings of the USSR Academy of Sciences (in Russian). 146: 263â266. English translation by Myron J. Ricci in Soviet Mathematics - Doklady, 3:1259â1263, 1962.
- ^ Pitassi, Toniann (2015). âCSC263: Balanced BSTs, AVL treeâ (PDF). University of Toronto, Department of Computer Science. p. 6. Archived (PDF) from the original on 14 February 2019. Retrieved 19 May 2022.
- ^ Jump up to: a b Thareja, Reema (13 October 2018). âHashing and Collisionâ. Data Structures Using C (2 ed.). Oxford University Press. ISBN 9780198099307.
- ^ Jump up to: a b c d e f g h i j k l m n o Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford (2001). Introduction to Algorithms (2nd ed.). MIT Press. ISBN 0-262-03293-7.
- ^ R. A. Frost; M. M. Peterson (1 February 1982). âA Short Note on Binary Search Treesâ. The Computer Journal. 25 (1). Oxford University Press: 158. doi:10.1093/comjnl/25.1.158.
- ^ Junzhou Huang. âDesign and Analysis of Algorithmsâ (PDF). University of Texas at Arlington. p. 12. Archived (PDF) from the original on 13 April 2021. Retrieved 17 May 2021.
- ^ Ray, Ray. âBinary Search Treeâ. Loyola Marymount University, Department of Computer Science. Retrieved 17 May 2022.
- ^ Thornton, Alex (2021). âICS 46: Binary Search Treesâ. University of California, Irvine. Archived from the original on 4 July 2021. Retrieved 21 October 2021.
- ^ Jump up to: a b c d e Brass, Peter (January 2011). Advanced Data Structure. Cambridge University Press. doi:10.1017/CBO9780511800191. ISBN 9780511800191.
- ^ Blum, Norbert; Mehlhorn, Kurt (1978). âOn the Average Number of Rebalancing Operations in Weight-Balanced Treesâ (PDF). Theoretical Computer Science. 11 (3): 303â320. doi:10.1016/0304-3975(80)90018-3. Archived (PDF) from the original on 2022-10-09.
- ^ Lehman, Tobin J.; Carey, Michael J. (25â28 August 1986). A Study of Index Structures for Main Memory Database Management Systems. Twelfth International Conference on Very Large Databases (VLDB 1986). Kyoto. ISBN 0-934613-18-4.
- ^ Aragon, Cecilia R.; Seidel, Raimund (1989), âRandomized Search Treesâ (PDF), 30th Annual Symposium on Foundations of Computer Science, Washington, D.C.: IEEE Computer Society Press, pp. 540â545, doi:10.1109/SFCS.1989.63531, ISBN 0-8186-1982-1, archived (PDF) from the original on 2022-10-09
- ^ Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford (2001). âRedâBlack Treesâ. Introduction to Algorithms (second ed.). MIT Press. pp. 273â301. ISBN 978-0-262-03293-3.
- ^ Comer, Douglas (June 1979), âThe Ubiquitous B-Treeâ, Computing Surveys, 11 (2): 123â137, doi:10.1145/356770.356776, ISSN 0360-0300, S2CID 101673
- ^ Knuth, Donald M (1998). â6.2.4â. The Art of Computer Programming. Vol. 3 (2 ed.). Addison Wesley. ISBN 9780201896855. The 2â3 trees defined at the close of Section 6.2.3 are equivalent to B-Trees of order 3.
- ^ Sleator, Daniel D.; Tarjan, Robert E. (1985). âSelf-Adjusting Binary Search Treesâ (PDF). Journal of the ACM. 32 (3): 652â686. doi:10.1145/3828.3835. S2CID 1165848.
- ^ Narayanan, Arvind (2019). âCOS226: Binary search treesâ. Princeton University School of Engineering and Applied Science. Archived from the original on 22 March 2021. Retrieved 21 October 2021 â via cs.princeton.edu.
- ^ Xiong, Li. âA Connection Between Binary Search Trees and Quicksortâ. Oxford College of Emory University, The Department of Mathematics and Computer Science. Archived from the original on 26 February 2021. Retrieved 4 June 2022.
- ^ Myers, Andrew. âCS 2112 Lecture and Recitation Notes: Priority Queues and Heapsâ. Cornell University, Department of Computer Science. Archived from the original on 21 October 2021. Retrieved 21 October 2021.
Further reading[edit]
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.
External links[edit]
- 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)