string-searching icon indicating copy to clipboard operation
string-searching copied to clipboard

String(not limited to []const u8)-searching algorithms in zig

string-searching

CI

Implementation of some string-search algorithms in zig. Compatible with zig v0.11.0.

Boyer-Moore string searching

Ported from the implementation in the Go standard library: strings/search.go.

Bitap algorithm

Inspired by the code on the Wikipedia article.