Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
krahets committed Jan 30, 2023
1 parent 9973822 commit 7f3752d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.9.0-alpine

RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.2
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.8

WORKDIR /app

Expand Down
28 changes: 12 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://www.hello-algo.com/">
<img src="https://www.hello-algo.com/index.assets/conceptual_rendering.png" width="230">
<img src="https://www.hello-algo.com/index.assets/conceptual_rendering.png" width="200">
</a>
</p>

Expand All @@ -9,7 +9,7 @@
</h3>

<p align="center">
动画图解、能运行、可讨论的</br>数据结构与算法快速入门教程
动画图解、能运行、可提问的</br>数据结构与算法快速入门教程
</p>

</br>
Expand All @@ -31,31 +31,27 @@

## 关于本书

本书面向数据结构与算法初学者,致力于达成以下目标:
本书面向算法初学者,致力于构建一本开源免费、新手友好的数据结构与算法入门书。

- 开源免费,所有同学都可在网上获取本书;
- 新手友好,适合算法初学者自主学习入门;
- 动画讲解,尽可能地保证平滑的学习曲线;
- 代码导向,提供可一键运行的算法源代码;
- 讨论学习,提问一般能在三日内得到回复;
- 全书采用动画图解,致力于结构化地讲解数据结构与算法知识,内容清晰易懂、学习曲线平滑;
- 算法源代码皆可一键运行,现已支持 Java, C++, Python, Go, JS, TS, C#, Swift 等语言;
- 提供章节讨论区,提问与评论一般能在两日内得到回复;

如果感觉本书对你有所帮助,请点个 Star :star: 支持一下,谢谢!
如果本书对您有所帮助,请点个 Star :star: 支持一下,谢谢!

## 推荐语

> “一本通俗易懂的数据结构与算法入门书,引导读者手脑并用地学习,强烈推荐算法初学者阅读。”
>
> **—— 邓俊辉,清华大学计算机系教授**
## 贡献
## 参与写作

我们正在加速更新本书,期待您来[一起参与创作](https://www.hello-algo.com/chapter_preface/contribution/),以帮助其他读者获取更优质的学习内容
我们正在加速更新本书,期待您通过提交 Pull Request 来[参与创作](https://www.hello-algo.com/chapter_preface/contribution/),以帮助其他读者获取更优质的学习内容

- 如果发现笔误、无效链接、内容缺失、文字歧义、解释不清晰等问题,烦请您帮忙修正;
- [代码翻译](https://github.com/krahets/hello-algo/issues/15) C++, Python, Go, JavaScript, TypeScript 正在进行中,期望您前来挑大梁;
- 欢迎您通过提交 Pull Request 来增添新内容,包括重写章节、新增章节等;

> 有任何问题请与我联系 WeChat: krahets-jyd
- 如您发现语法错误、内容缺失、文字歧义、无效链接、解释不清晰等问题,烦请帮忙修正或评论指出;
- 期待您参与 C++, Python, Go, JavaScript, TypeScript, C, C#, Swift, Zig, Rust [代码翻译](https://github.com/krahets/hello-algo/issues/15)
- 欢迎您拓展内容或新增章节,若有任何问题请与我联系 WeChat: krahets-jyd ;

感谢本开源书的每一位撰稿人,是他们的无私奉献让这本书变得更好,他们是:

Expand Down
1 change: 0 additions & 1 deletion codes/c/chapter_tree/binary_tree_dfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ int *arr;

/* 前序遍历 */
void preOrder(TreeNode *root, int *size) {

if (root == NULL) return;
// 访问优先级:根结点 -> 左子树 -> 右子树
arr[(*size)++] = root->val;
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ services:
build: .
ports:
- "8000:8000"

1 change: 0 additions & 1 deletion docs/chapter_stack_and_queue/deque.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ comments: true
public Integer peekLast() {
return isEmpty() ? null : rear.val;
}

}
```

Expand Down

0 comments on commit 7f3752d

Please sign in to comment.