Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
haolin3 committed Aug 10, 2020
1 parent a5c381f commit f59e695
Show file tree
Hide file tree
Showing 115 changed files with 21 additions and 19 deletions.
Binary file added .DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
40 changes: 21 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
# Algorithm - 365天摆脱算法小白
> **作者**:小浩
>
> **说明**:我曾发起一个项目 [hello-algorithm](https://github.com/geekxh/hello-algorithm),从上线到获得 8k star 只用了不到半个月的时间,且登上过 github trending 日榜榜首的位置。但是该项目在我看来却有一定局限性,由于资源性质过重,并不能让大家真正参与进来。同时,也没有系统的给出一套完整的算法训练步骤。在这样的背景下,我重新创建了现在这个项目:Algorithm-100-Days,期望可以提供**一套完整的算法训练**
> **说明**:我曾发起一个项目 [hello-algorithm](https://github.com/geekxh/hello-algorithm),从上线到获得 8k star 只用了不到半个月的时间,且登上过 github trending 日榜榜首的位置。但是该项目在我看来却有一定局限性,由于资源性质过重,并不能让大家真正参与进来。同时,也没有系统的给出一套完整的算法训练步骤。在这样的背景下,我重新创建了现在这个项目:Algorithm-100-./Days,期望可以提供**一套完整的算法训练**
>
> 同时该项目也会尽可能的提供算法相关学习资料,包括但不限于:国内外优质算法算法视频(Youtube、Bilibili)、算法相关书籍下载(百度云)、算法面试题目汇总(leetcode、flag、bat)、算法题目源码解析(我会尽可能组织更多的人来提供代码以及代码分析)
>
> *最后:所有对该项目有兴趣的人,都可以参与进来,你的任何行为都可以使你成为 contributor。哪怕只是提供一个学习链接!*
<br/>

难度 A:基础 B:进阶

| 学习目录 | 难度 | 描述 |
| --- | --- | --- |
| [01.数据结构和算法的重要性]() | | |
| [02.链表]() | | |
| [03.双向链表]() | | |
| [04.队列]() | | |
| [05.栈]() | | |
| [06.哈希表]() | | |
| [07.堆]() | | |
| [08.优先队列]() | | |
| [09.字典树]() | | |
| [10.树]() | | |
| [11.二叉搜索树]() | | |
| [12.AVL树]() | | |
| [13.红黑树]() | | |
| [14.树状数组]() | | |
| [15.图]() | | |
| [16.并查集]() | | |
| [17.布隆过滤器]() | | |
| [01.数据结构和算法的重要性](./Day01-17/01.数据结构和算法的重要性.md) | A | |
| [02.链表](./Day01-17/02.链表.md) | A | |
| [03.双向链表](./Day01-17/03.双向链表.md) | A | |
| [04.队列](./Day01-17/04.队列.md) | A | |
| [05.栈](./Day01-17/05.栈.md) | A | |
| [06.哈希表](./Day01-17/06.哈希表.md) | A | |
| [07.堆](./Day01-17/07.堆.md) | A | |
| [08.优先队列](./Day01-17/08.优先队列.md) | B | |
| [09.字典树](./Day01-17/09.字典树.md) | B | |
| [10.树](./Day01-17/10.树.md) | A | |
| [11.二叉搜索树](./Day01-17/11.二叉搜索树.md) | A | |
| [12.AVL树](./Day01-17/12.AVL树.md) | B | |
| [13.红黑树](./Day01-17/13.红黑树.md) | B | |
| [14.树状数组](./Day01-17/14.树状数组.md) | B | |
| [15.图](./Day01-17/15.图.md) | A | |
| [16.并查集](./Day01-17/16.并查集.md) | B | |
| [17.布隆过滤器](./Day01-17/17.布隆过滤器.md) | B | |
| [18.笛卡尔积]() | | |
| [19.洗牌算法]() | | |
| [20.子集]() | | |
Expand All @@ -42,7 +44,7 @@
| [29.汉明距离]() | | |
| [30.莱温斯坦距离]() | | |
| [31.KMP]() | | |
| [32.Sunday]() | | |
| [32.Sun./Day]() | | |
| [33.字符串快速查找]() | | |
| [34.Rabin Karp 算法]() | | |
| [35.最长公共子串]() | | |
Expand Down

0 comments on commit f59e695

Please sign in to comment.