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
- Host: GitHub
- URL: https://github.com/jprivillaso/patternsearch
- Owner: jprivillaso
- Created: 2013-05-08T03:54:59.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-08T04:00:21.000Z (about 12 years ago)
- Last Synced: 2023-03-23T12:55:47.688Z (about 2 years ago)
- Language: C
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.