请输入您要查询的百科知识:

 

词条 Search tree
释义

  1. Types of Trees

     Binary Search Tree  B-tree  (a,b)-tree  Ternary search tree 

  2. Searching Algorithms

     Searching for a Specific Key  Recursive  Iterative  Searching for Min and Max  Minimum  Maximum 

  3. See also

  4. References

{{distinguish|Tree search}}

In computer science, a search tree is a tree data structure used for locating specific keys from within a set. In order for a tree to function as a search tree, the key for each node must be greater than any keys in subtrees on the left and less than any keys in subtrees on the right.[1]

The advantage of search trees is their efficient search time given the tree is reasonably balanced, which is to say the leaves at either end are of comparable depths. Various search-tree data structures exist, several of which also allow efficient insertion and deletion of elements, which operations then have to maintain tree balance.

Search trees are often used to implement an associative array. The search tree algorithm uses the key from the key-value pair to find a location, and then the application stores the entire key–value pair at that location.

Types of Trees

Binary Search Tree

{{Main|Binary search tree}}

A Binary Search Tree is a node-based data structure where each node contains a key and two subtrees, the left and right. For all nodes, the left subtree's key must be less than the node's key, and the right subtree's key must be greater than the node's key. These subtrees must all qualify as binary search trees.

The worst-case time complexity for searching a binary search tree is the height of the tree, which can be as small as O(log n) for a tree with n elements.

B-tree

{{Main|B-tree}}

B-trees are generalizations of binary search trees in that they can have a variable number of subtrees at each node. While child-nodes have a pre-defined range, they will not necessarily be filled with data, meaning B-trees can potentially waste some space. The advantage is that B-trees do not need to be re-balanced as frequently as other self-balancing trees.

Due to the variable range of their node length, B-trees are optimized for systems that read large blocks of data, they are also commonly used in databases.

The time complexity for searching a B-tree is O(log n).

(a,b)-tree

{{Main|(a,b)-tree}}

An (a,b)-tree is a search tree where all of its leaves are the same depth. Each node has at least a children and at most b children, while the root has at least 2 children and at most b children.

a and b can be decided with the following formula:[2]

The time complexity for searching an (a,b)-tree is O(log n).

Ternary search tree

{{Main|Ternary search tree}}

A ternary search tree is a type of tree that can have 3 nodes: a lo kid, an equal kid, and a hi kid. Each node stores a single character and the tree itself is ordered the same way a binary search tree is, with the exception of a possible third node.

Searching a ternary search tree involves passing in a string to test whether any path contains it.

The time complexity for searching a balanced ternary search tree is O(log n).

Searching Algorithms

Searching for a Specific Key

Assuming the tree is ordered, we can take a key and attempt to locate it within the tree. The following algorithms are generalized for binary search trees, but the same idea can be applied to trees of other formats.

Recursive

 search-recursive(key, node)     '''if''' node is ''NULL''         '''return''' ''EMPTY_TREE''     '''if''' key < node.key         return search-recursive(key, node.left)     '''else if''' key > node.key         return search-recursive(key, node.right)     '''else'''         '''return''' node

Iterative

 searchIterative(key, node)     currentNode := node     '''while''' currentNode is not ''NULL''         '''if''' currentNode.key = key             '''return''' currentNode         '''else if''' currentNode.key > key             currentNode := currentNode.left         '''else'''             currentNode := currentNode.right

Searching for Min and Max

In a sorted tree, the minimum is located at the node farthest left, while the maximum is located at the node farthest right.[3]

Minimum

 findMinimum(node)     '''if''' node is ''NULL''         '''return''' ''EMPTY_TREE''     min := node     '''while''' min.left is not ''NULL''         min := min.left     '''return''' min.key

Maximum

 findMaximum(node)     '''if''' node is ''NULL''         '''return''' ''EMPTY_TREE''     max := node     '''while''' max.right is not ''NULL''         max := max.right     '''return''' max.key

See also

  • Trie
  • Binary Tree
  • Depth-first search

References

1. ^Black, Paul and Pieterse, Vreda (2005). [https://xlinux.nist.gov/dads/HTML/searchtree.html "search tree"]. Dictionary of Algorithms and Data Structures
2. ^Toal, Ray. "(a,b) Trees"
3. ^Gildea, Dan (2004). "Binary Search Tree"
{{DEFAULTSORT:Search Tree}}

2 : Search trees|Search algorithms

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/10 16:43:22