Skip to content

Instantly share code, notes, and snippets.

@huangmin007
huangmin007 / BoyerMoore.cs
Created December 24, 2019 10:23 — forked from mjs3339/BoyerMoore.cs
C# High Performance Boyer Moore Byte Array Search Algorithm
public class BoyerMoore
{
private int[] _jumpTable;
private byte[] _pattern;
private int _patternLength;
public BoyerMoore()
{
}
public BoyerMoore(byte[] pattern)
{