Skip to content

Instantly share code, notes, and snippets.

View wbadry's full-sized avatar
🎯
Focusing

Waleed El-Badry wbadry

🎯
Focusing
View GitHub Profile
@wbadry
wbadry / BoyerMoore.cs
Created March 12, 2020 18:15 — 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)
{