KMP string matching algorithm (string/pattern search in a text)

Vivekanand Khyade - Algorithm Every Day
Youtube
Related Topic
:- Data Structures

KMP string search algorithm searches a pattern in a text. It can search a particular word in a paragraph or text. It is an efficient algorithm with less time complexity , O(m+n) where m = length of text and n = length of pattern.

Comments