InterviewSolution
Saved Bookmarks
| 1. |
What is a time complexity for finding the longest substring that is common in string S1 and S2 (n1 and n2 are the string lengths of strings s1, s2 respectively)?(a) O (log n!)(b) Ɵ (n!)(c) O (n^2+ n1)(d) Ɵ (n1 + n2)Question is taken from Suffix tree in chapter Trie of Data Structures & Algorithms II had been asked this question at a job interview. |
|
Answer» The correct answer is (d) Ɵ (N1 + n2) |
|