# hello-algorithm
**Repository Path**: cxxFFrank/hello-algorithm
## Basic Information
- **Project Name**: hello-algorithm
- **Description**: 🌍 针对小白的算法训练 | 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 | 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-12-30
- **Last Updated**: 2021-12-30
## Categories & Tags
**Categories**: Uncategorized
**Tags**: 算法
## README
## 简介
English version repo and Gitbook is on [english branch](https://github.com/geekxh/hello-algorithm/tree/english)
> ### **小浩算法是一套针对小白的完整的算法训练流程!**
>
>
>
>
>
> 目前共包括以下几个步骤:
> - PART_1_算法基础
> - PART_2_力扣图解
> - PART_3_大厂面试
> - PART_4_CS知识汇总
>
> [目前已支持 PDF 下载](https://www.cxyhub.com/all/programming/7786/)
这也许是东半球最好的算法学习类项目!
### 正文 ### PART_1_算法基础 主要包括两部分: - a:数据结构知识框架:为了大家更好的掌握数据结构和算法,我把基础知识整理成了一张思维导图,包括下面这些知识点: > [开始学习](PART_1_算法基础/README.md)
- b:对常用的数据结构知识进行总结:
* [链表](PART_1_算法基础/2_基础知识/linked-list/README.md)
* [双向链表](PART_1_算法基础/2_基础知识/doubly-linked-list/README.md)
* [队列](PART_1_算法基础/2_基础知识/queue/README.md)
* [栈](PART_1_算法基础/2_基础知识/stack/README.md)
* [哈希表(散列)](PART_1_算法基础/2_基础知识/hash-table/README.md)
* [堆](PART_1_算法基础/2_基础知识/heap/README.md)
* [优先队列](PART_1_算法基础/2_基础知识/priority-queue/README.md)
* [字典树](PART_1_算法基础/2_基础知识/trie/README.md)
* [树](PART_1_算法基础/2_基础知识/tree/README.md)
* [图](PART_1_算法基础/2_基础知识/graph/README.md)
### PART_2_力扣图解