Oleksii Trekhleb 57e0a875a0 Add Algorithms.
2018-03-29 21:48:01 +03:00

27 lines
951 B
Markdown

# JavaScript Algorithms and Data Structures
[![Build Status](https://travis-ci.org/trekhleb/javascript-algorithms.svg?branch=master)](https://travis-ci.org/trekhleb/javascript-algorithms)
## Data Structures
1. [Linked List](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/linked-list)
2. [Queue](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/queue)
3. [Stack](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/stack)
4. [Hash Table](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/hash-table)
## [Algorithms](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms)
1. [Fibonacci Number](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/fibonacci)
## Running Tests
**Run all tests**
```
npm test
```
**Run tests by name**
```
npm test -- -t 'LinkedList'
```