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.
27 lines
972 B
27 lines
972 B
---
|
|
comments: true
|
|
icon: material/timer-sand
|
|
---
|
|
|
|
# 第 2 章 时空复杂度
|
|
|
|
<div class="center-table" markdown>
|
|
|
|
![时空复杂度](../assets/covers/chapter_complexity_analysis.jpg){ width="600" }
|
|
|
|
</div>
|
|
|
|
!!! abstract
|
|
|
|
复杂度分析犹如浩瀚的算法宇宙中的时空向导。
|
|
|
|
它带领我们在时间与空间这两个维度上深入探索,寻找更优雅的解决方案。
|
|
|
|
## 本章内容
|
|
|
|
- [2.1 算法效率评估](https://www.hello-algo.com/chapter_computational_complexity/performance_evaluation/)
|
|
- [2.2 迭代与递归](https://www.hello-algo.com/chapter_computational_complexity/iteration_and_recursion/)
|
|
- [2.3 时间复杂度](https://www.hello-algo.com/chapter_computational_complexity/time_complexity/)
|
|
- [2.4 空间复杂度](https://www.hello-algo.com/chapter_computational_complexity/space_complexity/)
|
|
- [2.5 小结](https://www.hello-algo.com/chapter_computational_complexity/summary/)
|