Simple string matching algorithm: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | |||
[[Category:Algorithm]] | |||
[[Category:Main Algorithm]] | |||
'''Algorithmic problem:''' [[One-dimensional string matching]] | |||
'''Prerequisites:''' | |||
'''Type of algorithm:''' loop | |||
</ | |||
'''Auxiliary data''' A [[FIFO queue]] <math>I</math> of natural numbers, which always contains the start indexes of all occurrences of <math>T</math> in <math>S</math> that have been seen only partially thus far. | |||
==Abstract view== | |||
==Induction basis== | |||
==Induction step== | |||
==Complexity== | |||
==Further information== |
Revision as of 09:51, 1 October 2014
Algorithmic problem: One-dimensional string matching
Prerequisites:
Type of algorithm: loop
Auxiliary data A FIFO queue [math]\displaystyle{ I }[/math] of natural numbers, which always contains the start indexes of all occurrences of [math]\displaystyle{ T }[/math] in [math]\displaystyle{ S }[/math] that have been seen only partially thus far.