McqMate
Q. |
What is the worst case time complexity of KMP algorithm for pattern searching (m = length of text, n = length of pattern)? |
A. | o(n) |
B. | o(n*m) |
C. | o(m) |
D. | o(log n) |
Answer» C. o(m) | |
Explanation: kmp algorithm is an efficient pattern searching algorithm. it has a time complexity of o(m) where m is the length of text. |
View all MCQs in
Design and Analysis of Algorithms