Add the chapter cover images (#528)

pull/529/head
Yudong Jin 1 year ago committed by GitHub
parent 033dca77fe
commit 041a989d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

@ -0,0 +1,7 @@
# 数组与链表
<div class="center-table" markdown>
![数组与链表](../assets/covers/chapter_array_and_linkedlist.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 回溯
<div class="center-table" markdown>
![回溯](../assets/covers/chapter_backtracking.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 复杂度分析
<div class="center-table" markdown>
![复杂度分析](../assets/covers/chapter_complexity_analysis.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 数据结构简介
<div class="center-table" markdown>
![数据结构](../assets/covers/chapter_data_structure.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 图
<div class="center-table" markdown>
![](../assets/covers/chapter_graph.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 散列表
<div class="center-table" markdown>
![散列表](../assets/covers/chapter_hashing.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 堆
<div class="center-table" markdown>
![](../assets/covers/chapter_heap.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 引言
<div class="center-table" markdown>
![引言](../assets/covers/chapter_introduction.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 写在前面
<div class="center-table" markdown>
![写在前面](../assets/covers/chapter_preface.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 搜索
<div class="center-table" markdown>
![搜索](../assets/covers/chapter_searching.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 排序
<div class="center-table" markdown>
![排序](../assets/covers/chapter_sorting.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 栈与队列
<div class="center-table" markdown>
![栈与队列](../assets/covers/chapter_stack_and_queue.jpg){ width="70%" }
</div>

@ -0,0 +1,7 @@
# 树
<div class="center-table" markdown>
![](../assets/covers/chapter_tree.jpg){ width="70%" }
</div>

@ -125,39 +125,47 @@ extra_css:
# Page tree # Page tree
nav: nav:
- 0. &nbsp; &nbsp; 写在前面: - 0. &nbsp; &nbsp; 写在前面:
- chapter_preface/index.md
- 0.1. &nbsp; 关于本书: chapter_preface/about_the_book.md - 0.1. &nbsp; 关于本书: chapter_preface/about_the_book.md
- 0.2. &nbsp; 如何使用本书: chapter_preface/suggestions.md - 0.2. &nbsp; 如何使用本书: chapter_preface/suggestions.md
- 0.3. &nbsp; 小结: chapter_preface/summary.md - 0.3. &nbsp; 小结: chapter_preface/summary.md
- 1. &nbsp; &nbsp; 引言: - 1. &nbsp; &nbsp; 引言:
- chapter_introduction/index.md
- 1.1. &nbsp; 算法无处不在: chapter_introduction/algorithms_are_everywhere.md - 1.1. &nbsp; 算法无处不在: chapter_introduction/algorithms_are_everywhere.md
- 1.2. &nbsp; 算法是什么: chapter_introduction/what_is_dsa.md - 1.2. &nbsp; 算法是什么: chapter_introduction/what_is_dsa.md
- 1.3. &nbsp; 小结: chapter_introduction/summary.md - 1.3. &nbsp; 小结: chapter_introduction/summary.md
- 2. &nbsp; &nbsp; 复杂度分析: - 2. &nbsp; &nbsp; 复杂度分析:
- chapter_computational_complexity/index.md
- 2.1. &nbsp; 算法效率评估: chapter_computational_complexity/performance_evaluation.md - 2.1. &nbsp; 算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 2.2. &nbsp; 时间复杂度: chapter_computational_complexity/time_complexity.md - 2.2. &nbsp; 时间复杂度: chapter_computational_complexity/time_complexity.md
- 2.3. &nbsp; 空间复杂度: chapter_computational_complexity/space_complexity.md - 2.3. &nbsp; 空间复杂度: chapter_computational_complexity/space_complexity.md
- 2.4. &nbsp; 小结: chapter_computational_complexity/summary.md - 2.4. &nbsp; 小结: chapter_computational_complexity/summary.md
- 3. &nbsp; &nbsp; 数据结构简介: - 3. &nbsp; &nbsp; 数据结构简介:
- chapter_data_structure/index.md
- 3.1. &nbsp; 数据结构分类: chapter_data_structure/classification_of_data_structure.md - 3.1. &nbsp; 数据结构分类: chapter_data_structure/classification_of_data_structure.md
- 3.2. &nbsp; 基本数据类型: chapter_data_structure/basic_data_types.md - 3.2. &nbsp; 基本数据类型: chapter_data_structure/basic_data_types.md
- 3.3. &nbsp; 数字编码 *: chapter_data_structure/number_encoding.md - 3.3. &nbsp; 数字编码 *: chapter_data_structure/number_encoding.md
- 3.4. &nbsp; 字符编码 *: chapter_data_structure/character_encoding.md - 3.4. &nbsp; 字符编码 *: chapter_data_structure/character_encoding.md
- 3.5. &nbsp; 小结: chapter_data_structure/summary.md - 3.5. &nbsp; 小结: chapter_data_structure/summary.md
- 4. &nbsp; &nbsp; 数组与链表: - 4. &nbsp; &nbsp; 数组与链表:
- chapter_array_and_linkedlist/index.md
- 4.1. &nbsp; 数组: chapter_array_and_linkedlist/array.md - 4.1. &nbsp; 数组: chapter_array_and_linkedlist/array.md
- 4.2. &nbsp; 链表: chapter_array_and_linkedlist/linked_list.md - 4.2. &nbsp; 链表: chapter_array_and_linkedlist/linked_list.md
- 4.3. &nbsp; 列表: chapter_array_and_linkedlist/list.md - 4.3. &nbsp; 列表: chapter_array_and_linkedlist/list.md
- 4.4. &nbsp; 小结: chapter_array_and_linkedlist/summary.md - 4.4. &nbsp; 小结: chapter_array_and_linkedlist/summary.md
- 5. &nbsp; &nbsp; 栈与队列: - 5. &nbsp; &nbsp; 栈与队列:
- chapter_stack_and_queue/index.md
- 5.1. &nbsp; 栈: chapter_stack_and_queue/stack.md - 5.1. &nbsp; 栈: chapter_stack_and_queue/stack.md
- 5.2. &nbsp; 队列: chapter_stack_and_queue/queue.md - 5.2. &nbsp; 队列: chapter_stack_and_queue/queue.md
- 5.3. &nbsp; 双向队列: chapter_stack_and_queue/deque.md - 5.3. &nbsp; 双向队列: chapter_stack_and_queue/deque.md
- 5.4. &nbsp; 小结: chapter_stack_and_queue/summary.md - 5.4. &nbsp; 小结: chapter_stack_and_queue/summary.md
- 6. &nbsp; &nbsp; 散列表: - 6. &nbsp; &nbsp; 散列表:
- chapter_hashing/index.md
- 6.1. &nbsp; 哈希表: chapter_hashing/hash_map.md - 6.1. &nbsp; 哈希表: chapter_hashing/hash_map.md
- 6.2. &nbsp; 哈希冲突处理: chapter_hashing/hash_collision.md - 6.2. &nbsp; 哈希冲突处理: chapter_hashing/hash_collision.md
- 6.3. &nbsp; 小结: chapter_hashing/summary.md - 6.3. &nbsp; 小结: chapter_hashing/summary.md
- 7. &nbsp; &nbsp; 树: - 7. &nbsp; &nbsp; 树:
- chapter_tree/index.md
- 7.1. &nbsp; 二叉树: chapter_tree/binary_tree.md - 7.1. &nbsp; 二叉树: chapter_tree/binary_tree.md
- 7.2. &nbsp; 二叉树遍历: chapter_tree/binary_tree_traversal.md - 7.2. &nbsp; 二叉树遍历: chapter_tree/binary_tree_traversal.md
- 7.3. &nbsp; 二叉树数组表示: chapter_tree/array_representation_of_tree.md - 7.3. &nbsp; 二叉树数组表示: chapter_tree/array_representation_of_tree.md
@ -165,21 +173,25 @@ nav:
- 7.5. &nbsp; AVL 树 *: chapter_tree/avl_tree.md - 7.5. &nbsp; AVL 树 *: chapter_tree/avl_tree.md
- 7.6. &nbsp; 小结: chapter_tree/summary.md - 7.6. &nbsp; 小结: chapter_tree/summary.md
- 8. &nbsp; &nbsp; 堆: - 8. &nbsp; &nbsp; 堆:
- chapter_heap/index.md
- 8.1. &nbsp; 堆: chapter_heap/heap.md - 8.1. &nbsp; 堆: chapter_heap/heap.md
- 8.2. &nbsp; 建堆操作 *: chapter_heap/build_heap.md - 8.2. &nbsp; 建堆操作 *: chapter_heap/build_heap.md
- 8.3. &nbsp; 小结: chapter_heap/summary.md - 8.3. &nbsp; 小结: chapter_heap/summary.md
- 9. &nbsp; &nbsp; 图: - 9. &nbsp; &nbsp; 图:
- chapter_graph/index.md
- 9.1. &nbsp; 图: chapter_graph/graph.md - 9.1. &nbsp; 图: chapter_graph/graph.md
- 9.2. &nbsp; 图基础操作: chapter_graph/graph_operations.md - 9.2. &nbsp; 图基础操作: chapter_graph/graph_operations.md
- 9.3. &nbsp; 图的遍历: chapter_graph/graph_traversal.md - 9.3. &nbsp; 图的遍历: chapter_graph/graph_traversal.md
- 9.4. &nbsp; 小结: chapter_graph/summary.md - 9.4. &nbsp; 小结: chapter_graph/summary.md
- 10. &nbsp; &nbsp; 搜索算法: - 10. &nbsp; &nbsp; 搜索:
- chapter_searching/index.md
- 10.1. &nbsp; 二分查找New: chapter_searching/binary_search.md - 10.1. &nbsp; 二分查找New: chapter_searching/binary_search.md
- 10.2. &nbsp; 二分查找边界New: chapter_searching/binary_search_edge.md - 10.2. &nbsp; 二分查找边界New: chapter_searching/binary_search_edge.md
- 10.3. &nbsp; 哈希优化策略: chapter_searching/replace_linear_by_hashing.md - 10.3. &nbsp; 哈希优化策略: chapter_searching/replace_linear_by_hashing.md
- 10.4. &nbsp; 重识搜索算法: chapter_searching/searching_algorithm_revisited.md - 10.4. &nbsp; 重识搜索算法: chapter_searching/searching_algorithm_revisited.md
- 10.5. &nbsp; 小结: chapter_searching/summary.md - 10.5. &nbsp; 小结: chapter_searching/summary.md
- 11. &nbsp; &nbsp; 排序算法: - 11. &nbsp; &nbsp; 排序:
- chapter_sorting/index.md
- 11.1. &nbsp; 排序算法: chapter_sorting/sorting_algorithm.md - 11.1. &nbsp; 排序算法: chapter_sorting/sorting_algorithm.md
- 11.2. &nbsp; 选择排序New: chapter_sorting/selection_sort.md - 11.2. &nbsp; 选择排序New: chapter_sorting/selection_sort.md
- 11.3. &nbsp; 冒泡排序: chapter_sorting/bubble_sort.md - 11.3. &nbsp; 冒泡排序: chapter_sorting/bubble_sort.md
@ -191,10 +203,11 @@ nav:
- 11.9. &nbsp; 计数排序: chapter_sorting/counting_sort.md - 11.9. &nbsp; 计数排序: chapter_sorting/counting_sort.md
- 11.10. &nbsp; 基数排序: chapter_sorting/radix_sort.md - 11.10. &nbsp; 基数排序: chapter_sorting/radix_sort.md
- 11.11. &nbsp; 小结: chapter_sorting/summary.md - 11.11. &nbsp; 小结: chapter_sorting/summary.md
- 12. &nbsp; &nbsp; 回溯算法: - 12. &nbsp; &nbsp; 回溯:
- 12.1. &nbsp; 回溯算法New: chapter_backtracking/backtracking_algorithm.md - chapter_backtracking/index.md
- 12.2. &nbsp; 全排列问题New: chapter_backtracking/permutations_problem.md - 12.1. &nbsp; 回溯算法: chapter_backtracking/backtracking_algorithm.md
- 12.3. &nbsp; N 皇后问题New: chapter_backtracking/n_queens_problem.md - 12.2. &nbsp; 全排列问题: chapter_backtracking/permutations_problem.md
- 12.3. &nbsp; N 皇后问题: chapter_backtracking/n_queens_problem.md
- 13. &nbsp; &nbsp; 附录: - 13. &nbsp; &nbsp; 附录:
- 13.1. &nbsp; 编程环境安装: chapter_appendix/installation.md - 13.1. &nbsp; 编程环境安装: chapter_appendix/installation.md
- 13.2. &nbsp; 一起参与创作: chapter_appendix/contribution.md - 13.2. &nbsp; 一起参与创作: chapter_appendix/contribution.md

Loading…
Cancel
Save