InterviewSolution
Saved Bookmarks
| 1. |
Longest common subsequence is an example of ____________(a) Greedy algorithm(b) 2D dynamic programming(c) 1D dynamic programming(d) Divide and conquerI have been asked this question by my college director while I was bunking the class.My question is from Longest Common Subsequence topic in portion Dynamic Programming of Data Structures & Algorithms II |
|
Answer» CORRECT answer is (B) 2D dynamic programming The BEST I can explain: LONGEST common subsequence is an EXAMPLE of 2D dynamic programming. |
|