BK-tree (original) (raw)

From Wikipedia, the free encyclopedia

Tree data structure for metric spaces

A BK-tree (short for Burkhard-Keller tree) is a metric tree suggested by Walter Austin Burkhard and Robert M. Keller[1] specifically adapted to discrete metric spaces. For simplicity, given a way to measure the distance between any two elements of a set, a BK-tree is built with a single root node and several subtrees, each connected to the root as a child. All nodes in a subtree have an equal distance to the root node, and the edge weight of the edge connecting the subtree to the root is equal to the distance. As shown in the picture. Also, each subtree of a BK-tree is a BK-tree.

The structure of the BK-tree is shown in the diagram: every node in a subtree is equidistant from the root

BK-trees can be used for approximate string matching in a dictionary [2]. The problem is formulated as follows: Given a pattern string P = p 1 p 2 . . . p m {\displaystyle P=p_{1}p_{2}...p_{m}} {\displaystyle P=p_{1}p_{2}...p_{m}} and a text string T = t 1 t 2 … t n {\displaystyle T=t_{1}t_{2}\dots t_{n}} {\displaystyle T=t_{1}t_{2}\dots t_{n}}, we need to find a substring T j ′ , j = t j ′ … t j {\displaystyle T_{j',j}=t_{j'}\dots t_{j}} {\displaystyle T_{j',j}=t_{j'}\dots t_{j}} in T {\displaystyle T} {\displaystyle T}, which, of all substrings of T {\displaystyle T} {\displaystyle T}, has the smallest edit distance to the pattern P {\displaystyle P} {\displaystyle P}.

An ordinary way using BK-tree is to insert all Θ ( n 2 ) {\displaystyle \Theta (n^{2})} {\displaystyle \Theta (n^{2})} substrings of T {\displaystyle T} {\displaystyle T} and the pattern string P {\displaystyle P} {\displaystyle P} into the BK-tree, and find the subtree containing nodes with the smallest distance from the root. This will lead to a time complexity of Θ ( n 2 log ⁡ n ) {\displaystyle \Theta (n^{2}\log n)} {\displaystyle \Theta (n^{2}\log n)}. However, this algorithm is very accurate and can find every substrings with the smallest edit distance to P {\displaystyle P} {\displaystyle P}.

An example of BK-tree

This picture depicts the BK-tree for the set W {\displaystyle W} {\displaystyle W} of words {"book", "books", "cake", "boo", "boon", "cook", "cape", "cart"} obtained by using the Levenshtein distance

The BK-tree is built so that:

The insertion primitive is used to populate a BK-tree t {\displaystyle t} {\displaystyle t} according to a discrete metric d {\displaystyle d} {\displaystyle d}.

Input:

Output:

Algorithm:

Given a searched element w {\displaystyle w} {\displaystyle w}, the lookup primitive traverses the BK-tree to find the closest element of w {\displaystyle w} {\displaystyle w}. The key idea is to restrict the exploration of t {\displaystyle t} {\displaystyle t} to nodes that can only improve the best candidate found so far by taking advantage of the BK-tree organization and of the triangle inequality (cut-off criterion).

Input:

Output:

Algorithm:

Example of the lookup algorithm

[edit]

Consider the example 8-node B-K Tree shown above and set w = {\displaystyle w=} {\displaystyle w=}"cool". S {\displaystyle S} {\displaystyle S} is initialized to contain the root of the tree, which is subsequently popped as the first value of u {\displaystyle u} {\displaystyle u} with w u {\displaystyle w_{u}} {\displaystyle w_{u}}="book". Further d u = 2 {\displaystyle d_{u}=2} {\displaystyle d_{u}=2} since the distance from "book" to "cool" is 2, and d b e s t = 2 {\displaystyle d_{best}=2} {\displaystyle d_{best}=2} as this is the best (i.e. smallest) distance found thus far. Next each outgoing arc from the root is considered in turn: the arc from "book" to "books" has weight 1, and since | 1 − 2 | = 1 {\displaystyle |1-2|=1} {\displaystyle |1-2|=1} is less than d b e s t = 2 {\displaystyle d_{best}=2} {\displaystyle d_{best}=2}, the node containing "books" is inserted into S {\displaystyle S} {\displaystyle S} for further processing. The next arc, from "book" to "cake," has weight 4, and since | 4 − 2 | = 2 {\displaystyle |4-2|=2} {\displaystyle |4-2|=2} is not less than d b e s t = 2 {\displaystyle d_{best}=2} {\displaystyle d_{best}=2}, the node containing "cake" is not inserted into S {\displaystyle S} {\displaystyle S}. Therefore, the subtree rooted at "cake" will be pruned from the search, as the word closest to "cool" cannot appear in that subtree. To see why this pruning is correct, notice that a candidate word c {\displaystyle c} {\displaystyle c} appearing in "cake"s subtree having distance less than 2 to "cool" would violate the triangle inequality: the triangle inequality requires that for this set of three numbers (as sides of a triangle), no two can sum to less than the third, but here the distance from "cool" to "book" (which is 2) plus the distance from "cool" to c {\displaystyle c} {\displaystyle c} (which is less than 2) cannot reach or exceed the distance from "book" to "cake" (which is 4). Therefore, it is safe to disregard the entire subtree rooted at "cake".

Next the node containing "books" is popped from S {\displaystyle S} {\displaystyle S} and now d u = 3 {\displaystyle d_{u}=3} {\displaystyle d_{u}=3}, the distance from "cool" to "books." As d u > d b e s t {\displaystyle d_{u}>d_{best}} {\displaystyle d_{u}>d_{best}}, d b e s t {\displaystyle d_{best}} {\displaystyle d_{best}} remains set at 2 and the single outgoing arc from the node containing "books" is considered. Next, the node containing "boo" is popped from S {\displaystyle S} {\displaystyle S} and d u = 2 {\displaystyle d_{u}=2} {\displaystyle d_{u}=2}, the distance from "cool" to "boo." This again does not improve upon d b e s t = 2 {\displaystyle d_{best}=2} {\displaystyle d_{best}=2}. Each outgoing arc from "boo" is now considered; the arc from "boo" to "boon" has weight 1, and since | 2 − 1 | = 1 < d b e s t = 2 {\displaystyle |2-1|=1<d_{best}=2} {\displaystyle |2-1|=1<d_{best}=2}, "boon" is added to S {\displaystyle S} {\displaystyle S}. Similarly, since | 2 − 2 | = 0 < d b e s t {\displaystyle |2-2|=0<d_{best}} {\displaystyle |2-2|=0<d_{best}}, "cook" is also added to S {\displaystyle S} {\displaystyle S}.

Finally each of the two last elements in S {\displaystyle S} {\displaystyle S} are considered in arbitrary order: suppose the node containing "cook" is popped first, improving d b e s t {\displaystyle d_{best}} {\displaystyle d_{best}} to distance 1, then the node containing "boon" is popped last, which has distance 2 from "cool" and therefore does not improve the best result. Finally, "cook" is returned as the answer w b e s t {\displaystyle w_{best}} {\displaystyle w_{best}} with d b e s t = 1 {\displaystyle d_{best}=1} {\displaystyle d_{best}=1}.

The efficiency of BK-trees depends strongly on the structure of the tree and the distribution of distances between stored elements.

In the average case, both insertion and lookup operations take Θ ( log ⁡ n ) {\displaystyle \Theta (\log n)} {\displaystyle \Theta (\log n)} time, assuming the tree remains relatively balanced and the distance metric distributes elements evenly.[3][4]

In the worst case, when the data or distance function causes the tree to become highly unbalanced (for example, when many elements are at similar distances), both insertion and lookup can degrade to Θ ( n ) {\displaystyle \Theta (n)} {\displaystyle \Theta (n)}.[5][6]

In practical applications, the actual performance depends on the choice of distance metric (e.g., the Levenshtein distance) and on the allowed search radius during approximate matching.[7]