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: 2 months 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T05:01:59.000Z (over 1 year ago)
- Last Synced: 2025-01-30T20:55:24.417Z (4 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
[](https://github.com/alexmozheyko/data-structures/actions/workflows/unit-tests.yml)
[](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
```