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

https://github.com/jprivillaso/patternsearch

Search Patterns given by the user in a very long string, searching for batches in C language
https://github.com/jprivillaso/patternsearch

Last synced: 23 days ago
JSON representation

Search Patterns given by the user in a very long string, searching for batches in C language

Awesome Lists containing this project

README

        

PatternSearch
=============

Search Patterns given by the user in a very long string, searching for batches in C language

Actual Version: Only find the pattern in a strinf using KMP algorithm. If KMP does not match any results,
so it calls the "Longest Common Substring" algorithm to find the maximum match of the pattern in the string
given and also it prints the position where it was found.