An open API service indexing awesome lists of open source software.

https://github.com/newraina/learn-algorithms-by-javascript

《算法》一书学习记录
https://github.com/newraina/learn-algorithms-by-javascript

Last synced: 22 days ago
JSON representation

《算法》一书学习记录

Awesome Lists containing this project

README

          

# 《算法》重要范例和习题的JavaScript实现

[![Code Climate](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript/badges/gpa.svg)](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript) [![Build Status](https://travis-ci.org/newraina/Learn-Algorithms-By-JavaScript.svg?branch=master)](https://travis-ci.org/newraina/Learn-Algorithms-By-JavaScript) [![Test Coverage](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript/badges/coverage.svg)](https://codeclimate.com/github/newraina/Learn-Algorithms-By-JavaScript/coverage)

## 文件结构说明

```
(以第一单元为例)
├── coverage // 存放测试覆盖率结果
├── test // 项目测试汇总
├── 1-basic // 第一单元
│ ├── exercise/ // 重要练习题的代码部分
│ ├── src/ // 重要数据结构和算法的代码实现
│ ├── test/ // src文件夹中代码的测试部分
│ ├── README.md // 本章总结与习题思路
```