Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 569 Bytes

File metadata and controls

19 lines (12 loc) · 569 Bytes

string_searching

CI

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

Important

This library was renamed from string-searching, now using an underscore

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.