Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/aliaks-ei/data-structures

A collection of the most famous data structures implemented in Typescript
https://github.com/aliaks-ei/data-structures

binary-search data-structures editorconfig-checker hash-table javascript jest linked-list typescript unit-testing

Last synced: 15 days ago
JSON representation

A collection of the most famous data structures implemented in Typescript

Awesome Lists containing this project

README

        

# Data structures in Javascript

[![unit-tests](https://github.com/alexmozheyko/data-structures/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/alexmozheyko/data-structures/actions/workflows/unit-tests.yml)
[![editorconfig-check](https://github.com/alexmozheyko/data-structures/actions/workflows/.editorconfig-check.yml/badge.svg)](https://github.com/alexmozheyko/data-structures/actions/workflows/.editorconfig-check.yml)

A collection of the most famous data structures implemented in Typescript:

1. [Binary search tree](src/binary-search-tree)
2. [Hash table](src/hash-table)
3. [Linked list](src/linked-list)

### Project setup
```
npm install
```

### Run unit tests
```
npm run test:unit
```