You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
comments: true
|
|
|
|
icon: material/set-split
|
|
|
|
---
|
|
|
|
|
|
|
|
# 第 12 章 分治
|
|
|
|
|
|
|
|
![分治](../assets/covers/chapter_divide_and_conquer.jpg){ class="cover-image" }
|
|
|
|
|
|
|
|
!!! abstract
|
|
|
|
|
|
|
|
难题被逐层拆解,每一次的拆解都使它变得更为简单。
|
|
|
|
|
|
|
|
分而治之揭示了一个重要的事实:从简单做起,一切都不再复杂。
|
|
|
|
|
|
|
|
## 本章内容
|
|
|
|
|
|
|
|
- [12.1 分治算法](https://www.hello-algo.com/chapter_divide_and_conquer/divide_and_conquer/)
|
|
|
|
- [12.2 分治搜索策略](https://www.hello-algo.com/chapter_divide_and_conquer/binary_search_recur/)
|
|
|
|
- [12.3 构建树问题](https://www.hello-algo.com/chapter_divide_and_conquer/build_binary_tree_problem/)
|
|
|
|
- [12.4 汉诺塔问题](https://www.hello-algo.com/chapter_divide_and_conquer/hanota_problem/)
|
|
|
|
- [12.5 小结](https://www.hello-algo.com/chapter_divide_and_conquer/summary/)
|