hello-algo/en/docs/chapter_computational_complexity/index.md

23 lines
710 B
Markdown
Raw Normal View History

2023-12-22 00:01:05 +08:00
---
comments: true
icon: material/timer-sand
---
2024-04-06 03:02:20 +08:00
# Chapter 2.   Complexity analysis
2023-12-22 00:01:05 +08:00
2024-04-06 03:02:20 +08:00
![Complexity analysis](../assets/covers/chapter_complexity_analysis.jpg){ class="cover-image" }
2023-12-22 00:01:05 +08:00
!!! abstract
2023-12-25 02:38:20 +08:00
Complexity analysis is like a space-time navigator in the vast universe of algorithms.
It guides us in exploring deeper within the the dimensions of time and space, seeking more elegant solutions.
2023-12-22 00:01:05 +08:00
2024-04-07 02:41:53 +08:00
## Chapter contents
2023-12-22 00:01:05 +08:00
2024-04-07 02:41:53 +08:00
- [2.1   Algorithm efficiency assessment](performance_evaluation.md)
- [2.2   Iteration and recursion](iteration_and_recursion.md)
- [2.3   Time complexity](time_complexity.md)
- [2.4   Space complexity](space_complexity.md)
- [2.5   Summary](summary.md)