Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 481 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 481 Bytes

string-searching

CI

Implementation of some string-search algorithms in zig. Compatible with zig 0.13.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.