|
1 | 1 | # JavaScript 数据结构与算法
|
2 | 2 |
|
3 |
| -本仓库的文档根据哔哩哔哩[《JavaScript 数据结构与算法》](https://www.bilibili.com/video/BV1x7411L7Q7)视频内容整理而成的学习笔记,视频教程讲得特别好,配合本仓库的文档和测试代码,学习效果更佳。 |
| 3 | +本仓库的[文档](https://data-structure-and-algorithm.xpoet.cn)根据哔哩哔哩[《JavaScript 数据结构与算法》](https://www.bilibili.com/video/BV1x7411L7Q7)视频内容整理而成的学习笔记,视频教程讲得特别好,配合本仓库的文档和测试代码,学习效果更佳。 |
4 | 4 |
|
5 | 5 | 推荐大家按照目录结构的顺序来学习,由浅入深,循序渐进,轻松搞定数据结构和算法。
|
6 | 6 |
|
| 7 | +## 预览文档 |
| 8 | + |
| 9 | +**https://data-structure-and-algorithm.xpoet.cn** |
| 10 | + |
7 | 11 | ## 数据结构
|
8 | 12 |
|
9 |
| -- 数组 |
10 |
| -- 栈 |
11 |
| -- 队列 |
12 |
| -- 优先队列 |
13 |
| -- 单向链表 |
14 |
| -- 双向链表 |
15 |
| -- 集合 |
16 |
| -- 字典 |
17 |
| -- 哈希表 |
18 |
| -- 树 |
19 |
| -- 二叉树 |
20 |
| -- 二叉搜索树 |
21 |
| -- 图 |
| 13 | +- [数组](https://data-structure-and-algorithm.xpoet.cn/data-structure/Array.html) |
| 14 | +- [栈](https://data-structure-and-algorithm.xpoet.cn/data-structure/Stack.html) |
| 15 | +- [队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/Queue.html) |
| 16 | +- [优先队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/PriorityQueue.html) |
| 17 | +- [单向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/LinkedList.html) |
| 18 | +- [双向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/DoubleLinkedList.html) |
| 19 | +- [集合](https://data-structure-and-algorithm.xpoet.cn/data-structure/Set.html) |
| 20 | +- [字典](https://data-structure-and-algorithm.xpoet.cn/data-structure/Map.html) |
| 21 | +- [哈希表](https://data-structure-and-algorithm.xpoet.cn/data-structure/HashTable.html) |
| 22 | +- [树](https://data-structure-and-algorithm.xpoet.cn/data-structure/Tree.html) |
| 23 | +- [二叉树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinaryTree.html) |
| 24 | +- [二叉搜索树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinarySearchTree.html) |
| 25 | +- [图](https://data-structure-and-algorithm.xpoet.cn/data-structure/Graph.html) |
22 | 26 |
|
23 | 27 | ## 算法
|
24 | 28 |
|
25 |
| -- 排序算法 |
26 |
| -- 搜索算法 |
27 |
| -- 算法设计思想 |
28 |
| -- 经典算法题 |
| 29 | +- [排序算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/sort.html) |
| 30 | +- [搜索算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/search.html) |
| 31 | +- [算法设计思想](https://data-structure-and-algorithm.xpoet.cn/algorithm/idea.html) |
| 32 | +- [经典算法题](https://data-structure-and-algorithm.xpoet.cn/algorithm/classic.html) |
29 | 33 |
|
30 | 34 | ## 测试代码
|
31 | 35 |
|
32 |
| -数据结构的测试代码存放在 `src/docs/public/data-structure` 目录下。 |
| 36 | +数据结构的测试代码存放在 [src / docs / public / data-structure](https://github.com/XPoet/js-data-structure-and-algorithm/tree/master/src/docs/public/data-structure) 目录下。 |
| 37 | + |
| 38 | + |
33 | 39 |
|
0 commit comments