Thinking Recursively(Eric S.Roberts) Notes

Table of Contents

Chapter 1

To be an appropriate candidate for recursive solution, a problem must have three distinct properties:

  • It must be possible to decompose the original problem into simpler instances of the same problem.
  • Once each of these simpler subproblems has been solved, it must be possible to combine these solutions to produce a solution to the original problem.
  • As the large problem is broken down into successively less complex ones, those subproblems must eventually become so simple that they can be solved without further subdivision.

Chapter 2 Mathematical Preliminaries

Author: Shi Shougang

Created: 2015-03-05 Thu 23:21

Emacs 24.3.1 (Org mode 8.2.10)

Validate