BK-tree

A BK-tree is a metric tree suggested by Walter Austin Burkhard and Robert M. Keller[1] specifically adapted to discrete metric spaces. For simplicity, consider integer discrete metric d ( x , y ) {\displaystyle d(x,y)} . Then, BK-tree is defined in the following way. An arbitrary element a is selected as root node. The root node may have zero or more subtrees. The k-th subtree is recursively built of all elements b such that d ( a , b ) = k {\displaystyle d(a,b)=k} . BK-trees can be used for approximate string matching in a dictionary.[2][example needed]

Example

An example of BK-tree

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

  • each node u {\displaystyle u} is labeled by a string of w u W {\displaystyle w_{u}\in W} ;
  • each arc ( u , v ) {\displaystyle (u,v)} is labeled by d u v = d ( w u , w v ) {\displaystyle d_{uv}=d(w_{u},w_{v})} where w u {\displaystyle w_{u}} denotes the word assigned to u {\displaystyle u} .

The BK-tree is built so that:

  • for all node u {\displaystyle u} of the BK-tree, the weight assigned to its egress arcs are distinct;
  • for all arc e = ( u , v ) {\displaystyle e=(u,v)} labeled by k {\displaystyle k} , each descendant v {\displaystyle v'} of v {\displaystyle v} satisfies the following equation: d ( w u , w v ) = k {\displaystyle d(w_{u},w_{v'})=k} :
    • Example 1: Consider the arc from "book" to "books". The distance between "book" and any word in {"books", "boo", "boon", "cook"} is equal to 1;
    • Example 2: Consider the arc from "books" to "boo". The distance between "books" and any word in {"boo", "boon", "cook"} is equal to 2.

Insertion

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

Input:

  • t {\displaystyle t} : the BK-tree;
    • d u v {\displaystyle d_{uv}} denotes the weight assigned to an arc ( u , v ) {\displaystyle (u,v)} ;
    • w u {\displaystyle w_{u}} denotes word assigned to a node u {\displaystyle u} );
  • d {\displaystyle d} : the discrete metric used by t {\displaystyle t} (e.g. the Levenshtein distance);
  • w {\displaystyle w} : the element to be inserted into t {\displaystyle t} ;

Output:

  • The node of t {\displaystyle t} corresponding to w {\displaystyle w}

Algorithm:

  • If the t {\displaystyle t} is empty:
    • Create a root node r {\displaystyle r} in t {\displaystyle t}
    • w r w {\displaystyle w_{r}\leftarrow w}
    • Return r {\displaystyle r}
  • Set u {\displaystyle u} to the root of t {\displaystyle t}
  • While u {\displaystyle u} exists:
    • k d ( w u , w ) {\displaystyle k\leftarrow d(w_{u},w)}
    • If k = 0 {\displaystyle k=0} :
      • Return u {\displaystyle u}
    • Find v {\displaystyle v} the child of u {\displaystyle u} such that d u v = k {\displaystyle d_{uv}=k}
    • If v {\displaystyle v} is not found:
      • Create the node v {\displaystyle v}
      • w v w {\displaystyle w_{v}\leftarrow w}
      • Create the arc ( u , v ) {\displaystyle (u,v)}
      • d u v k {\displaystyle d_{uv}\leftarrow k}
      • Return v {\displaystyle v}
    • u v {\displaystyle u\leftarrow v}

Lookup

Given a searched element w {\displaystyle w} , the lookup primitive traverses the BK-tree to find the closest element of w {\displaystyle w} . The key idea is to restrict the exploration of 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:

  • t {\displaystyle t} : the BK-tree;
  • d {\displaystyle d} : the corresponding discrete metric (e.g. the Levenshtein distance);
  • w {\displaystyle w} : the searched element;
  • d m a x {\displaystyle d_{max}} : the maximum distance allowed between the best match and w {\displaystyle w} , defaults to + {\displaystyle +\infty } ;

Output:

  • w b e s t {\displaystyle w_{best}} : the closest element to w {\displaystyle w} stored in t {\displaystyle t} and according to d {\displaystyle d} or {\displaystyle \perp } if not found;

Algorithm:

  • If t {\displaystyle t} is empty:
    • Return {\displaystyle \perp }
  • Create S {\displaystyle S} a set of nodes to process, and insert the root of t {\displaystyle t} into S {\displaystyle S} .
  • ( w b e s t , d b e s t ) ( , d m a x ) {\displaystyle (w_{best},d_{best})\leftarrow (\perp ,d_{max})}
  • While S {\displaystyle S\neq \emptyset } :
    • Pop an arbitrary node u {\displaystyle u} from S {\displaystyle S}
    • d u d ( w , w u ) {\displaystyle d_{u}\leftarrow d(w,w_{u})}
    • If d u < d b e s t {\displaystyle d_{u}<d_{best}} :
      • ( w b e s t , d b e s t ) ( w u , d u ) {\displaystyle (w_{best},d_{best})\leftarrow (w_{u},d_{u})}
    • For each egress-arc ( u , v ) {\displaystyle (u,v)} :
      • If | d u v d u | < d b e s t {\displaystyle |d_{uv}-d_{u}|<d_{best}} : (cut-off criterion)
        • Insert v {\displaystyle v} into S {\displaystyle S} .
  • Return w b e s t {\displaystyle w_{best}}

Example of the lookup algorithm

Consider the example 8-node B-K Tree shown above and set w = {\displaystyle w=} "cool". S {\displaystyle S} is initialized to contain the root of the tree, which is subsequently popped as the first value of u {\displaystyle u} with w u {\displaystyle w_{u}} ="book". Further 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} 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} is less than d b e s t = 2 {\displaystyle d_{best}=2} , the node containing "books" is inserted into 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} is not less than d b e s t = 2 {\displaystyle d_{best}=2} , the node containing "cake" is not inserted into 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} 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} (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} and now 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}} , d b e s t {\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} and 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} . 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} , "boon" is added to S {\displaystyle S} . Similarly, since | 2 2 | = 0 < d b e s t {\displaystyle |2-2|=0<d_{best}} , "cook" is also added to S {\displaystyle S} .

Finally each of the two last elements in 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}} 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}} with d b e s t = 1 {\displaystyle d_{best}=1} .

See also

  • Levenshtein distance – the distance metric commonly used when building a BK-tree
  • Damerau–Levenshtein distance – a modified form of Levenshtein distance that allows transpositions

References

  • ^ W. Burkhard and R. Keller. Some approaches to best-match file searching, CACM, 1973
  • ^ R. Baeza-Yates, W. Cunto, U. Manber, and S. Wu. Proximity matching using fixed queries trees. In M. Crochemore and D. Gusfield, editors, 5th Combinatorial Pattern Matching, LNCS 807, pages 198–212, Asilomar, CA, June 1994.
  • ^ Ricardo Baeza-Yates and Gonzalo Navarro. Fast Approximate String Matching in a Dictionary. Proc. SPIRE'98

External links

  • A BK-tree implementation in Common Lisp with test results and performance graphs.
  • An explanation of BK-Trees and their relationship to metric spaces [3]
  • An explanation of BK-Trees with an implementation in C# [4]
  • A BK-tree implementation in Lua [5]
  • A BK-tree implementation in Python [6]