1 / 38

Exact String Matching Algorithms: A Survey

Exact String Matching Algorithms: A Survey. Mehreen Ali, Hina Naz Khan, Shumaila Sayyab, Nadeem Iftikhar Department of Bio-Science Mohammad Ali Jinnah University, Islamabad-Pakistan. Introduction

vernados
Download Presentation

Exact String Matching Algorithms: A Survey

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Exact String Matching Algorithms: A Survey Mehreen Ali, Hina Naz Khan, Shumaila Sayyab, Nadeem Iftikhar Department of Bio-Science Mohammad Ali Jinnah University, Islamabad-Pakistan

  2. Introduction • Exact string matching algorithms are believed to find all occurrences of a given string pattern in the given text of finite length. • Exact string matching algorithms are excessively used in • most of the operating systems, • text editors, • internet related searches, • high performance computing, • nucleotide or amino acid sequence searches from genome or protein databases.

  3. Abstract Exact String matching problem has always remained an eye catching area of research throughout the history of computer science. Exact string matching is fundamental to the database and text processing applications. Till now several algorithms have been proposed to solve this problem. This paper provides a survey on available exact string matching algorithms, along with their classification and evaluation based on certain important benchmarks.

  4. General Behavior • The general behavior consists of alignment of string pattern against the text and then comparison between them based on the given algorithm. • Each such alignment is referred to as text window and each process of comparison is known as an attempt. Such behavior of algorithms is termed as sliding window mechanism. • On a match or mismatch, next alignment of string pattern and text is checked till the text ends. • During pre-processing phase a matrix, table or a Finite State Automaton is computed based on the given string pattern, to be used during the searching phase.

  5. Benchmarks • Benchmarks to evaluate algorithms are; • 1. Time Complexity (tc) • 2. Space Complexity (sc) • 3. Pre-processing Time (pt) • 4. Character Comparisons (cc) (average or worst case) • Big (O) notation is used to calculate all these time and space complexities.

  6. Exact String Matching Algorithms • Brute Force Algorithm • basic and very simple algorithm to proceed; • It has no pre-processing phase. • can be done in any order.

  7. Classification • All other algorithms can be classified into four categories depending upon the order in which the comparisons are made, which are as follows; • From Left To Right • From Right To Left • In a Specific Order • In Any Order

  8. From Left To Right

  9. Deterministic Finite Automaton Algorithm • Computes the transition table for input, in the pre-processing phase. • Needs extra space and time to store and search the table.

  10. Karp-Rabin Algorithm • avoids checking at each position for the pattern in the text, thus • is very effective for multiple pattern matching. • Hashing function is used.

  11. Shift Or Algorithm • The algorithm uses bitwise techniques • works efficiently if the pattern length is within the memory- • word size of the machine. • Searching phase and time complexity is comparatively lesser • than Brute Force algorithm

  12. Morris-Pratt Algorithm • follows Brute Force algorithm • number of shifts is greater that increases the speed of the • search • keeps record of text already matched with the pattern.

  13. Knuth-Morris-Pratt Algorithm • follows Morris and Pratt algorithm, • increases the speed. • has less time and space complexity

  14. Simon Algorithm • derived from Deterministic Finite Automaton algorithm. • the number of the backward edges is reduced but searching • phase is similar. • time complexity increases irrespective of the input size.

  15. Apostolico-Crochemore Algorithm • refinement of the Knuth-Morris-Pratt algorithm • decreases the number of failure attempts thus saves time. • reduced character comparisons and space complexity.

  16. Not So Naïve Algorithm • follows the searching behavior of Apostolico-Crochemore • algorithm • time complexity is comparable to Brute Force algorithm.

  17. From Right To Left

  18. Boyer-Moore Algorithm • It uses two functions i.e. good-suffix shift and bad-character shift • maximum shift value from both functions is considered.

  19. Turbo-BM Algorithm • modified Boyer-Moore algorithm. • Time complexity has reduced as algorithm allows jumping over • already matched factor and a turbo-shift.

  20. Apostolico-Giancarlo Algorithm • variant of Boyer-Moore algorithm. • remembers the length of the longest suffix of the pattern and • store it in table Skip. • Suff table is used during computation of bad-character shift • function. • number of character comparisons has been reduced

  21. Quick search Algorithm • simplified Boyer-Moore algorithm • uses only bad character shift function . • reduced space complexity

  22. SSABS Algorithm • uses Quick Search bad character shift function + the calculation • of text window skip value. • has reduced time complexity

  23. Zhu-Takaoka Algorithm • variation of Boyer-Moore algorithm. • It considers two consecutive characters to calculate the bad • character shift. • Its search process is fast • Skip table grows very heavily. • increased pre-processing space and time complexity

  24. Berry-Ravindran Algorithm • derived from Quick Search algorithm and Zhu-Takaoka • algorithm. • It uses two characters to calculate shift value using bad • character shift value. • reduces the number of character comparisons. • space and time complexities are similar to that of Zhu-Takaoka • algorithm.

  25. TVSBS Algorithm • combination of Berry-Ravindran and SSABS algorithms. • It uses bad character shift function of Berry-Ravindran algorithm • whereas searching phase is similar to that of the SSABS.

  26. Reverse Factor Algorithm • preferred for long patterns and short text. • improved length of shifts. • has quadratic worst time complexity but on the average it is • optimal.

  27. In a Specific Order

  28. Colussi Algorithm • enhancement of Knuth-Morris-Pratt algorithm. • pattern position is divided into two disjoint subsets one is scanned from • left to right and other from right to left. • time complexity reduced and less character comparisons.

  29. Two Way Algorithm • requires ordered alphabets. • processing is like Colussi algorithm.

  30. String Matching On Ordered Alphabets Algorithm • also requires ordered alphabets. • There is no pre-processing phase • comparison of each character of string pattern is made one by one.

  31. In Any Order

  32. Horspool Algorithm • simplified Boyer-Moore algorithm. • Boyer-Moore bad character shift function is used • saves time during searching phase by reducing number of • comparisons.

  33. Smith Algorithm • derived from Horspool and Quick Search algorithms • uses their bad character shift functions to compute shift values. • no difference in time and space complexities.

  34. Raita Algorithm • uses Boyer-Moore bad character shift function • performs the shifts like the Horspool algorithm. • same time and space complexities as that of Horspool algorithm

  35. Evaluation Table 1: Comparison of Exact String Matching Algorithms

  36. Summary and Conclusion • Among all the selected ESMAs, the latest one i.e. TVSBS algorithm is the best for exact string matching BECAUSE; • uses least space and time complexity during pre-processing phase and otherwise also. • provides better results in fewer attempts • and less number of character comparisons even when compared with SSABS. • As with all other surveys, here too the list of ESMAs is yet not complete, although comprehensive. It is believed that further new proposed algorithms will also be considered, and evaluated in the similar fashion.

  37. References [1] AHO, A.V., 1990, Algorithms for finding patterns in strings. in Handbook of Theoretical Computer Science, Volume A, Algorithms and complexity, J. van Leeuwen ed., Chapter 5, pp 255-300, Elsevier, Amsterdam. [2] CHARRAS, C. and LECROQ, T., Handbook of Exact String Matching algorithms http://www-igm.univ-mlv.fr/~lecroq/string/ [3] CROCHEMORE, M., LECROQ, T., 1996, Pattern matching and text compression algorithms, in CRC Computer Science and Engineering Handbook, A. Tucker ed., Chapter 8, pp 162-202, CRC Press Inc., Boca Raton, FL. [4] GONNET, G.H., BAEZA-YATES, R.A., 1991. Handbook of Algorithms and Data Structures in Pascal and C, 2nd Edition, Chapter 7, pp. 251-288, Addison-Wesley Publishing Company. [5] GUSFIELD, D., 1997, Algorithms on strings, trees, and sequences: Computer Science and Computational Biology, Cambridge University Press. [6] RAHUL THATHOO, ASHISH VIRMANI, S. SAI LAKSHMI, N. BALAKRISHNAN and K. SEKAR, TVSBS: A fast exact pattern matching algorithm for biological sequences CURRENT SCIENCE, VOL. 91, NO. 1, 10 JULY 2006.

  38. Thanks

More Related