Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets committed Nov 16, 2022
1 parent 2f8829d commit 8876bb8
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 34 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,23 @@ For full documentation visit [mkdocs.org](https://www.mkdocs.org).
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

## 更新日志

| 更新内容 | 日期 |
| ------------ | ---------- |
| 新增:算法无处不在 | 2022-10-10 |
| 新增:数组与链表 | 2022-10-15 |
| 新增:数据结构简介 | 2022-10-20 |
| 新增:前言 | 2022-10-23 |
| 新增:计算复杂度 | 2022-11-03 |
| 更新:配图 | 2022-11-04 |
| 新增:数据与内存 | 2022-11-05 |
| 更新:各章节 Java 代码 | 2022-11-06 |
| 更新:列表 Java 代码、配图 | 2022-11-07 |
| 新增:栈与队列 | 2022-11-09 |
| 新增:树 | 2022-11-12 |
| 新增:二叉搜索树</br>更新:二叉树、表格居中 | 2022-11-13 |
| 更新:二叉搜索树 | 2022-11-14 |
| 更新:首页介绍 | 2022-11-15 |
| 更新:关于本书</br>新增:如何使用本书</br>新增:一起参与创作</br>更新:二叉树、表格居中 | 2022-11-16 |
Binary file modified docs/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/index.assets/algorithm_animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/index.assets/comment.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/index.assets/conceptual_rendering.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/index.assets/learning_route.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/index.assets/running_code.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 35 additions & 21 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,38 @@ hide:
- footer
---

# Hello,算法!

TODO

## 更新日志

| 更新内容 | 日期 |
| ------------ | ---------- |
| 新增:算法无处不在 | 2022-10-10 |
| 新增:数组与链表 | 2022-10-15 |
| 新增:数据结构简介 | 2022-10-20 |
| 新增:前言 | 2022-10-23 |
| 新增:计算复杂度 | 2022-11-03 |
| 更新:配图 | 2022-11-04 |
| 新增:数据与内存 | 2022-11-05 |
| 更新:各章节 Java 代码 | 2022-11-06 |
| 更新:列表 Java 代码、配图 | 2022-11-07 |
| 新增:栈与队列 | 2022-11-09 |
| 新增:树 | 2022-11-12 |
| 新增:二叉搜索树,<br />更新:二叉树、表格居中 | 2022-11-13 |
| 更新:二叉搜索树 | 2022-11-14 |
=== " "

<div class="result" markdown>
![conceptual_rendering](index.assets/conceptual_rendering.jpg){ align=left width=300 }
</br>
</br>
</br>
</br>
<h1 style="text-align:center"> 《Hello,算法》 </h1>
<h3 style="text-align:center"> 动画图解、能运行、可讨论的</br>数据结构与算法快速入门教程 </h3>
<h3 style="text-align:center"> [![github-stars](https://img.shields.io/github/stars/krahets/hello-algo?style=social)](https://github.com/krahets/hello-algo) </h3>
</br>
</div>

---

<h2 style="text-align:center"> 「动画 + 图片 + HTML」 </h2>

<p style="text-align:center"> 重点知识以动画和图解为主,提升知识吸收效率</br>MkDocs 文档,可在笔记本、平板、手机等移动端随时学习 </p>

![algorithm_animation](index.assets/algorithm_animation.gif)

<h2 style="text-align:center"> 「面向代码,注重实践」 </h2>

<p style="text-align:center"> 示例代码皆可一键运行,在调试中加深理解</br>提供 Java, C++, Python 源码与详细注释 </p>

![running_code](index.assets/running_code.gif)

<h2 style="text-align:center"> 「可讨论,能提问」 </h2>

<p style="text-align:center"> 在评论区和小伙伴们一起讨论进步</br>作者定期回复评论问题(一般 < 72h ) </p>

![comment](index.assets/comment.gif)

---
34 changes: 21 additions & 13 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ theme:
text: Roboto
code: Roboto Mono
favicon: assets/images/favicon.png
logo: assets/images/favicon.png
logo: assets/images/logo.png
# icon:
# logo: logo

Expand Down Expand Up @@ -115,6 +115,10 @@ extra_css:
nav:
- 关于本书:
- chapter_about/index.md
- 如何使用本书: chapter_about/how_to_read.md
- 编程环境安装: chapter_about/installation.md
- 一起参与创作: chapter_about/contribution.md
- License: chapter_about/license.md
- 算法无处不在:
- chapter_introduction/index.md
- 计算复杂度:
Expand All @@ -131,22 +135,26 @@ nav:
- 小结: chapter_data_structure/summary.md
- 数组与链表:
- chapter_array_and_linkedlist/index.md
- 数组: chapter_array_and_linkedlist/array.md
- 链表: chapter_array_and_linkedlist/linked_list.md
- 列表: chapter_array_and_linkedlist/list.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
- : chapter_stack_and_queue/stack.md
- 队列: chapter_stack_and_queue/queue.md
- 双向队列: chapter_stack_and_queue/deque.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
- 二叉树: chapter_tree/binary_tree.md
- 满二叉树: chapter_tree/perfect_complete_full_binary_tree.md
- 二叉树(Binary Tree): chapter_tree/binary_tree.md
- 二叉树常见类型: chapter_tree/binary_tree_types.md
- 二叉搜索树: chapter_tree/binary_search_tree.md
- 平衡二叉树: chapter_tree/balanced_binary_tree.md
- 小结: chapter_tree/summary.md
- License:
- chapter_license/index.md
- 查找算法:
- chapter_searching/index.md
- 线性查找: chapter_searching/linear_search.md
- 二分查找: chapter_searching/binary_search.md
- 小结: chapter_searching/summary.md
- 参考文献:
- chapter_reference/index.md

0 comments on commit 8876bb8

Please sign in to comment.