Content deleted Content added
Added another another algorithm for string searching. Tags: nowiki added Visual edit |
Undid revision 699884210 by 24.114.71.127 (talk) |
||
Line 4:
In practice, how the string is encoded can affect the feasible string search algorithms. In particular if a [[variable width encoding]] is in use then it is slow (time proportional to N) to find the Nth character. This will significantly slow down many of the more advanced search algorithms. A possible solution is to search for the sequence of code units instead, but doing so may produce false matches unless the encoding is specifically designed to avoid it.
== Basic classification ==
|