Saved Bookmarks
| 1. |
Explain What Is A Recursive Algorithm? |
|
Answer» Recursive algorithm is a method of solving a COMPLICATED problem by BREAKING a problem down into smaller and smaller sub-problems until you GET the problem SMALL enough that it can be solved easily. Usually, it involves a FUNCTION calling itself. Recursive algorithm is a method of solving a complicated problem by breaking a problem down into smaller and smaller sub-problems until you get the problem small enough that it can be solved easily. Usually, it involves a function calling itself. |
|