An open API service indexing awesome lists of open source software.

https://github.com/cschank/subseq

A C function for locating a subsequence of length n in a given sequence of length m. Runs in worst-case O(m*n) time, often much faster. Works in general using void pointers. Some example usages are given.
https://github.com/cschank/subseq

Last synced: about 1 year ago
JSON representation

A C function for locating a subsequence of length n in a given sequence of length m. Runs in worst-case O(m*n) time, often much faster. Works in general using void pointers. Some example usages are given.

Awesome Lists containing this project