All Projects → likejazz → boyer-moore-string-search

likejazz / boyer-moore-string-search

Licence: MIT license
Boyer Moore string search implementation in C

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects

boyer-moore-string-search

Boyer-Moore string search algorithm implementation in C.

The algorithm performs its matching backwards, from right to left and proceeds by iteratively matching, shifting the pattern, matching, shifting, etc. The shift amount is calculated by applying these two rules:

  1. the bad character rule
  2. good suffix rule

An actual shifting offset is the maximum one of them.

  • delta1 - the "Bad Character" table

This table contains an entry for every character in the alphabet. The entry for char specifies how far the pattern should be right shifted when chars found in the string and it does not match the current pattern character.

  • delta2 - the "Good Suffix" table

This table contains an entry for each character in the pattern. The entry for pattern[j] specifies how far the current string position should shift to the right when pattern[j-1] does not match the string but the suffix at pattern[j .. patlen-1] does match.

Usage

To compile and execute the tests:

$ make
$ ./bm

To remove the compiled file:

$ make clean

Sample Output

Sample Output

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].