InterviewSolution
Saved Bookmarks
| 1. |
Search for the terms of network connections. find the words upword, downward, left, right and diagonally (any 15) |
|
Answer» Answer: The time complexity of above RECURSIVE solution is EXPONENTIAL. There are many overlapping subproblems. We can draw a recursion TREE for numberOfPaths(3, 3) and SEE many overlapping subproblems. The recursion tree would be similar to Recursion tree for LONGEST Common Subsequence problem. |
|