Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xpoet/js-data-structure-and-algorithm
从 0 到 1 学习 JavaScript 数据结构与算法
https://github.com/xpoet/js-data-structure-and-algorithm
data-structure-and-algorithm javascript
Last synced: 28 days ago
JSON representation
从 0 到 1 学习 JavaScript 数据结构与算法
- Host: GitHub
- URL: https://github.com/xpoet/js-data-structure-and-algorithm
- Owner: XPoet
- Created: 2020-07-24T02:26:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-27T03:40:07.000Z (6 months ago)
- Last Synced: 2024-10-15T14:41:48.544Z (28 days ago)
- Topics: data-structure-and-algorithm, javascript
- Language: JavaScript
- Homepage: https://data-structure-and-algorithm.xpoet.cn
- Size: 3.97 MB
- Stars: 1,524
- Watchers: 45
- Forks: 293
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript 数据结构与算法
本仓库的[文档](https://data-structure-and-algorithm.xpoet.cn)根据哔哩哔哩[《JavaScript 数据结构与算法》](https://www.bilibili.com/video/BV1x7411L7Q7)视频内容整理而成的学习笔记,视频教程讲得特别好,配合本仓库的文档和测试代码,学习效果更佳。
推荐大家按照目录结构的顺序来学习,由浅入深,循序渐进,轻松搞定数据结构和算法。
## 在线预览
**https://data-structure-and-algorithm.xpoet.cn**
## 学习交流
作者组建了学习氛围特别好的前端技术交流群,欢迎同学们一起来交流吐槽。由于群人数较多,需要添加作者才能邀请进群。
> 添加微信时请备注来意,以便可以及时处理。
![image](https://xpoet.cn/images/fp/fp-slogan.webp)
## 数据结构
- [数组](https://data-structure-and-algorithm.xpoet.cn/data-structure/Array.html)
- [栈](https://data-structure-and-algorithm.xpoet.cn/data-structure/Stack.html)
- [队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/Queue.html)
- [优先队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/PriorityQueue.html)
- [单向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/LinkedList.html)
- [双向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/DoubleLinkedList.html)
- [集合](https://data-structure-and-algorithm.xpoet.cn/data-structure/Set.html)
- [字典](https://data-structure-and-algorithm.xpoet.cn/data-structure/Map.html)
- [哈希表](https://data-structure-and-algorithm.xpoet.cn/data-structure/HashTable.html)
- [树](https://data-structure-and-algorithm.xpoet.cn/data-structure/Tree.html)
- [二叉树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinaryTree.html)
- [二叉搜索树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinarySearchTree.html)
- [图](https://data-structure-and-algorithm.xpoet.cn/data-structure/Graph.html)## 算法
- [排序算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/sort.html)
- [搜索算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/search.html)
- [算法设计思想](https://data-structure-and-algorithm.xpoet.cn/algorithm/idea.html)
- [经典算法题](https://data-structure-and-algorithm.xpoet.cn/algorithm/classic.html)## 测试代码
数据结构的测试代码存放在 [src/docs/public/ data-structure](https://github.com/XPoet/js-data-structure-and-algorithm/tree/master/src/docs/public/data-structure) 目录。