InterviewSolution
| 1. |
What Is Accelerated Cascading? |
|
Answer» The accelerated cascading technique COMBINES a fast but work-inefficient ALGORITHM with a work optimal one. The problem is RECURSIVELY divided into many smaller sub-problems, which are FIRST solved solved using the optimal algorithm. The sub-results are then combined with the faster VERSION of the algorithm. The accelerated cascading technique combines a fast but work-inefficient algorithm with a work optimal one. The problem is recursively divided into many smaller sub-problems, which are first solved solved using the optimal algorithm. The sub-results are then combined with the faster version of the algorithm. |
|