Update LICENSE.

This commit is contained in:
krahets
2022-11-17 15:32:50 +08:00
parent 8876bb8d11
commit 90634cef97
4 changed files with 446 additions and 9 deletions

View File

@@ -120,39 +120,33 @@ nav:
- 一起参与创作: chapter_about/contribution.md
- License: chapter_about/license.md
- 算法无处不在:
- chapter_introduction/index.md
- chapter_dsa_introduction/index.md
- 计算复杂度:
- chapter_computational_complexity/index.md
- 算法效率评估: chapter_computational_complexity/performance_evaluation.md
- 时间复杂度: chapter_computational_complexity/time_complexity.md
- 空间复杂度: chapter_computational_complexity/space_complexity.md
- 权衡时间与空间: chapter_computational_complexity/space_time_tradeoff.md
- 小结: chapter_computational_complexity/summary.md
- 数据结构简介:
- chapter_data_structure/index.md
- 数据与内存: chapter_data_structure/data_and_memory.md
- 数据结构分类: chapter_data_structure/classification_of_data_strcuture.md
- 小结: chapter_data_structure/summary.md
- 数组与链表:
- chapter_array_and_linkedlist/index.md
- 数组Array: chapter_array_and_linkedlist/array.md
- 链表LinkedList: chapter_array_and_linkedlist/linked_list.md
- 列表List: chapter_array_and_linkedlist/list.md
- 小结: chapter_array_and_linkedlist/summary.md
- 栈与队列:
- chapter_stack_and_queue/index.md
- Stack: chapter_stack_and_queue/stack.md
- 队列Queue: chapter_stack_and_queue/queue.md
- 双向队列Deque: chapter_stack_and_queue/deque.md
- 小结: chapter_stack_and_queue/summary.md
- 二叉树:
- chapter_tree/index.md
- 二叉树Binary Tree: chapter_tree/binary_tree.md
- 二叉树常见类型: chapter_tree/binary_tree_types.md
- 二叉搜索树: chapter_tree/binary_search_tree.md
- 小结: chapter_tree/summary.md
- 查找算法:
- chapter_searching/index.md
- 线性查找: chapter_searching/linear_search.md
- 二分查找: chapter_searching/binary_search.md
- 小结: chapter_searching/summary.md