Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aliaks-ei/data-structures
- Owner: aliaks-ei
- Created: 2018-12-29T12:33:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T05:01:59.000Z (over 1 year ago)
- Last Synced: 2024-12-03T18:49:40.248Z (2 months ago)
- Topics: binary-search, data-structures, editorconfig-checker, hash-table, javascript, jest, linked-list, typescript, unit-testing
- Language: TypeScript
- Homepage:
- Size: 229 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```