0
0
DSA Pythonprogramming~5 mins

KMP Pattern Matching Algorithm in DSA Python - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does KMP stand for in the KMP Pattern Matching Algorithm?
KMP stands for Knuth-Morris-Pratt, the last names of the three computer scientists who created this efficient pattern matching algorithm.
Click to reveal answer
beginner
What is the main advantage of the KMP algorithm over the naive pattern matching approach?
KMP avoids rechecking characters that have already been matched by using a precomputed table, making it faster especially for large texts and patterns.
Click to reveal answer
intermediate
What is the purpose of the 'Longest Prefix Suffix' (LPS) array in KMP?
The LPS array stores the length of the longest proper prefix of the pattern that is also a suffix for each prefix of the pattern. It helps decide where to continue matching after a mismatch.
Click to reveal answer
intermediate
In KMP, what happens when a mismatch occurs after some characters have matched?
Instead of restarting from the next character in the text, KMP uses the LPS array to shift the pattern to the right position, skipping unnecessary comparisons.
Click to reveal answer
intermediate
What is the time complexity of the KMP Pattern Matching Algorithm?
The time complexity is O(n + m), where n is the length of the text and m is the length of the pattern, because each character is processed at most twice.
Click to reveal answer
What does the LPS array in KMP represent?
ALength of the pattern
BPositions of pattern matches in text
CNumber of mismatches found
DLength of longest prefix which is also suffix for pattern prefixes
Why is KMP faster than naive pattern matching?
AIt uses a precomputed table to avoid rechecking characters
BIt checks all characters twice
CIt uses random guessing
DIt only works on small texts
What is the worst-case time complexity of KMP?
AO(n + m)
BO(n * m)
CO(n^2)
DO(m^2)
When a mismatch occurs in KMP, what does the algorithm do?
AStops the search
BRestarts matching from the next character in text
CUses LPS array to shift pattern without rechecking matched characters
DSkips the entire pattern
What is the first step in the KMP algorithm?
AReverse the pattern
BCompute the LPS array for the pattern
CSearch the pattern in the text directly
DSort the text
Explain how the LPS array is constructed in the KMP algorithm and why it is important.
Think about matching prefixes and suffixes within the pattern itself.
You got /3 concepts.
    Describe the process of pattern matching in KMP when a mismatch occurs after some characters matched.
    Focus on how KMP shifts the pattern smartly instead of naive restarting.
    You got /3 concepts.