https://github.com/newraina/learn-algorithms-by-javascript
《算法》一书学习记录
https://github.com/newraina/learn-algorithms-by-javascript
Last synced: 22 days ago
JSON representation
《算法》一书学习记录
- Host: GitHub
- URL: https://github.com/newraina/learn-algorithms-by-javascript
- Owner: newraina
- Created: 2016-02-08T10:28:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-15T12:43:36.000Z (over 10 years ago)
- Last Synced: 2025-10-05T11:49:16.560Z (9 months ago)
- Language: JavaScript
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 《算法》重要范例和习题的JavaScript实现
[](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript) [](https://travis-ci.org/newraina/Learn-Algorithms-By-JavaScript) [](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript/coverage)
## 文件结构说明
```
(以第一单元为例)
├── coverage // 存放测试覆盖率结果
├── test // 项目测试汇总
├── 1-basic // 第一单元
│ ├── exercise/ // 重要练习题的代码部分
│ ├── src/ // 重要数据结构和算法的代码实现
│ ├── test/ // src文件夹中代码的测试部分
│ ├── README.md // 本章总结与习题思路
```