DDJ article: Full-text Searching & The Burrows-Wheler Transform

zhaozj2021-02-08  363

Finding Any Character Sequence In Source Text-and Fast!

By kendall Willets

Kendall Is A Software Engineer Living In San Francisco and Can Be Contacted At Kendall@willets.org.

When it comes to full-text indexing, we usually think of methods such as inverted indices that break text on word boundaries, consequently requiring search terms to be whole words only. Yet all of us probably have had the experience of searching for not-quite -Words-C , VM / CMS, SQL * Plus, 127.0.0.1, , and the like-this were skipped by an invered index, or broker inten, notking SUCH AS DNA SEQUECES, WHERE You NEED TO QUICKLY FIND ANY Sequence of Symbols.

In this article, I examine an indexing method that lets you find any character sequence in the source text-in time only proportional to the sequence length-using a structure that can compress the entire source text and index into less space than the text alone. This technique is exceptionally fast at detecting and counting occurrences of any string in the source text. The fact that you can build a string match incrementally-adding one character at a time and seeing the result at each step-gives you the flexibility to explore variable Patterns Such As Regular Expressions with maximum Effectiveness.

In "Fast String Searching with Suffix Trees" (DDJ, August 1996), Mark Nelson addressed full-text indexing using suffix trees; while in "Data Compression with the Burrows-Wheeler Transform" (DDJ, September 1996), he focused on the use of the Burrows-Wheeler Transform (BWT) for compression. While the BWT is commonly known as a data-compression technique, researchers have found that block-sorted data has a structure that lends itself naturally to search, while using space close to its . minimal compressed size This was first demonstrated in the FM index (see "Opportunistic Data Structures with Applications," by Paolo Ferragina and Giovanni Manzini, Proceedings of the 41st IEEE Symposium on Foundations of Computer Science, 2000; http: //www.mfn .unipmn.it / ~ manzini / fmindex /). In short, the same transformation that yields high-compression ratios, by grouping similar substrings together, also lets you find arbitrary substrings with little overhead.Block Sorting Reviewed

When block sorting, you construct a list of n blocks consisting of the source text S (usually followed by a special End-of-String character $) of length n, cyclically shifted from zero to n 1-positions. When you sort the blocks YOU GET A Matrix M; See Figure 1 (a). The First Column of M Is Called F, AND The Last, L. F Has A Simple Structure, Containing All The Characters of S in Sorted Order, with duplicates. Column D l Has A More Complex Structure That Contains Enough Information To Reconstruct The Original String, And Usually Forms The Basis for Bwt Compression.

In its naive form, M contains n2 characters, but a simple trick represents each block by its first character and a link to the block starting one character to the right;. Figures 1 (b) and 1 (c) To decode a block, you read its first character, follow its link to the next block, read its character and link, and repeat the process until the desired number of characters have been read. This character-and-link representation slashes spatial complexity from O (n2) to O (n) .The links act as a permutation on M, which I call FL because it permutes the orderly F column to the higher entropy L column FL is the permutation caused by shifting M one column to the left and resorting it;. each Row I Moves to a new position fl [i].

Since the F column is a sorted list of characters, the next space saver is to change from explicitly storing the F column, to simply recording the starting position for each character's range in F, using an array that I call "C"; Figure 1 (c). AT A Given Position I I I I I I I....................................................... This IDEA. Also See Figure 1 (d).

By storing only FL and C, you have a reasonable-but not minimal-representation of M, and you can decode successive characters of the source from left to right. The decode method in bwtindex.cc shows how to carry out this iteration. See Fighe 1 (e).

Useful Properties of the Permutation

Figure 2 Shows How Fl Is Order PRESERVING ON Blocks That Start with the Same Character. That IS, Given Two Blocks I and J That Both Start with C, Lexical Comparison Implies That I

This Order-PreServing Property Means That Fl Consists of Sections of Integers in Ascending Order, One Section for Each Character. You Can Search ONE The Sections for a Target Value Quickly, Using Binary Search.

Pattern matching

If you pick an arbitrary pattern string P, say "abr," one way to find all occurrences of it is to search the sorted blocks in M, finding the range of blocks that start with a, then narrowing it to blocks prefixed by "ab , "and so on, extending the pattern from left to right. This method is workable, but a more efficient algorithm (first developed by Ferragina and Manzini) works in the opposite direction, extending and matching the pattern one character to the left at each Turn.

To understand this method inductively, first consider how to match one character c, then how to extend a single character beyond a pattern that has already been matched. The answer to the first problem is easy, since you know blocks in the range C [c ] ... C [C 1] -1 start with c. I call this range "rc."

To left-extend a pattern match, consider the string cP formed by prepending a character c onto the already matched string P. Use FL, starting from the range of locations prefixed by P, mapping FL inversely to find the interval of blocks prefixed by cP , as follows.

Given the next character c and the range rp of blocks prefixed by p, you need to find the range rcp of blocks prefixed by cp. You know Two Things About RCP:

It must fall within the range Rc of blocks starting with c, that is, RcP is a subrange of Rc. FL must map all blocks in RcP into blocks in RP, because every block starting with cP must left-shift to a block that starts With P.

My approach is to start with the widest possible range Rc, and narrow it down to those entries that FL maps into RP. Because of the sorting, you know that entries prefixed by cP form a contiguous range. Since FL is order-preserving on Rc , you can find RcP as follows:. Scan Rc from the start until you find the lowest position i that FL maps into RP Scan backwards from the end to find the highest position j that FL maps into RP (in practice, you use binary search , But The Idea Is The Same.

The Resulting [i, J] Range IS RCP, The Range of Blocks Prefixed By CP. Figures 3 (a), 3 (b), 3 (c) And 3 (d) show this narrowing-down process; the Refine Method Implements This Algorithm in bwtindex.cc.

The result at each step in this process is a start / end position for a range of blocks prefixed by the pattern matched so far. The difference between these positions is the number of matches in the text, and starting from any position in this range, You can decode Characters in And Following Each Match.

The Location Problem

There is one valuable piece of information you have not found:. The exact offset of each match within the original text I can call this the "location problem," because there is virtually no information in a sorted block to tell you how far you Are from the start or end of the text, unless, unless, and count all the characters in between.

There are a number of solutions to the location problem that I will not address here except to say that all of them require extra information beyond FL and C, or any BWT representation. The simple but bulky solution is just to save the offset of each block in an array of n integers, reducing the problem to a simple lookup, but adding immensely to the space requirement. The problem is how to get the equivalent information into less space.Some approaches rely on marking an explicit offset milepost at only a few chosen blocks, so you quickly encounter a milepost while decoding forward from any block. Others use the text itself as a key, to index locations by unique substrings. Another possibility lets you jump ahead many characters at a time from certain blocks, so as to Reach the end of the text More quickly while counting forward. The Variety of Possible Solutions Makes It iMPossible To Cover.

A Word About Compression

Recall that I promised a full-text index that consumes only a few bits per character, but so far you've only seen a structure taking at least one int per character-hardly an improvement. However, the integers in FL have a distribution that makes them highly compressible You already know FL contains long sections of integers in ascending order Another useful fact is that consecutive entries often differ by only one;.. in normal text, as many as 70 percent of these differences are one, with the distribution falling OFF RAPIDLY with MAGNITUDE. My OWN Experiments Using Simple Differential and Gamma Coding Have

shrunk FL to fewer than 4 bits per character, and more sophisticated methods (see "Second Step Algorithms in the Burrows-Wheeler Compression Algorithm," by Sebastian Deorowicz; Software: Practice and Experience, Volume 32, Issue 2, 2002), have shrunk FL to even more competitive levels.The practical problem with compression is that elements of FL then vary in size, so finding an element FL [i] requires scanning from the beginning of the packed array. to eliminate most of the scanning, you need to use a separate bucket structure, which records the value and position of the first element of each bucket. To find FL [i], you scan forward from the beginning of the closest bucket preceding i, adding the encoded differences from that point until position i ................

DDJ

转载请注明原文地址:https://www.9cbs.com/read-22.html

New Post(0)