diff --git a/docs/chapter_computational_complexity/performance_evaluation.md b/docs/chapter_computational_complexity/performance_evaluation.md
index 45031b2f..dc1806e7 100644
--- a/docs/chapter_computational_complexity/performance_evaluation.md
+++ b/docs/chapter_computational_complexity/performance_evaluation.md
@@ -16,7 +16,7 @@ comments: true
- **时间效率** ,即算法的运行速度的快慢。
- **空间效率** ,即算法占用的内存空间大小。
-数据结构与算法追求 “运行得快、内存占用少” ,而如何去评价算法效率则是非常重要的问题。
+数据结构与算法追求 “运行得快、内存占用少” ,而如何去评价算法效率则是非常重要的问题,因为只有知道如何评价算法,才能去做算法之间的对比分析,以及优化算法设计。
## 效率评估方法
diff --git a/docs/chapter_preface/installation.md b/docs/chapter_preface/installation.md
index 4574379d..42041255 100644
--- a/docs/chapter_preface/installation.md
+++ b/docs/chapter_preface/installation.md
@@ -40,32 +40,3 @@ comments: true
1. 下载并安装 [.Net 6.0](https://dotnet.microsoft.com/en-us/download) ;
2. 在 VSCode 的插件市场中搜索 `c#` ,安装 c# 。
-
-
-
-
-Section | C++ | Python | Go | JavaScript #120 | TypeScript #121 | C | C# | Rust #112
--- | -- | -- | -- | -- | -- | -- | -- | --
-Performance Evaluation |
| | | | | | |
-Time Complexity | | | @Cathay-Chen | | | | |
-Space Complexity | | | | | | | |
-Space Time Tradeoff | | | @Reanon | @gyt95 | @gyt95 | | |
-Array | | | | @IsChristina | @justin-tse | | @mingXta |
-LinkedList | | | | @justin-tse @IsChristina | @justin-tse | | @mingXta |
-List | | | | @justin-tse @IsChristina | @justin-tse | | |
-Stack | @qualifier1024 | @pengchzn | @Reanon | @S-N-O-R-L-A-X (brewing) | @S-N-O-R-L-A-X (brewing) | | |
-Queue | @qualifier1024 | @pengchzn | @Reanon | @S-N-O-R-L-A-X (brewing) | @S-N-O-R-L-A-X (brewing) | | |
-Deque | | @pengchzn | @Reanon | | | | |
-Hashing | | | | | | |
-Hash Collision | | | | | | | |
-Binary Tree | | | @Reanon | @IsChristina | @justin-tse | | |
-Binary Tree Types | | | @Reanon | @IsChristina | @justin-tse | | |
-Binary Search Tree | | | @Reanon | @IsChristina | @justin-tse | | |
-AVL Tree | | | | | | | |
-Linear Search | | @Boy-timi | | | | | |
-Binary Search | | @Boy-timi | @Slone123c | | | | |
-Hash Search | | @Boy-timi | @Slone123c | | | | |
-Bubble Sort | | @Boy-timi | @Slone123c | @IsChristina | @justin-tse | | |
-Insertion Sort | | @Boy-timi | | @IsChristina | @justin-tse | | |
-Quick Sort | | @Boy-timi | | @IsChristina | @justin-tse | | |
-Merge Sort | | @Boy-timi | | @IsChristina | @justin-tse | | |
diff --git a/docs/chapter_tree/avl_tree.assets/right_rotate_step1.png b/docs/chapter_tree/avl_tree.assets/right_rotate_step1.png
index 6337ad54..c7981263 100644
Binary files a/docs/chapter_tree/avl_tree.assets/right_rotate_step1.png and b/docs/chapter_tree/avl_tree.assets/right_rotate_step1.png differ