Chapter 12. Divide and Conquer¶
Abstract
Difficult problems are decomposed layer by layer, with each decomposition making them simpler.
Divide and conquer reveals an important truth: start with simplicity, and nothing remains complex.
Chapter contents¶
- 12.1 Divide and Conquer Algorithms
- 12.2 Divide and Conquer Search Strategy
- 12.3 Building a Binary Tree Problem
- 12.4 Hanoi Tower Problem
- 12.5 Summary
