# hello-algorithm
**Repository Path**: ylbuu/hello-algorithm
## Basic Information
- **Project Name**: hello-algorithm
- **Description**: GitHub 高人气算法、力扣算法题解、大厂算法..
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 2
- **Forks**: 0
- **Created**: 2021-08-15
- **Last Updated**: 2025-07-14
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## 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.geekxh.com/0.0.%E5%AD%A6%E4%B9%A0%E9%A1%BB%E7%9F%A5/03.html?3pVd)
这也许是东半球最好的算法学习类项目!
### 正文 ### 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_力扣图解