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

https://github.com/nickradford/ts-data-structures

Common data structures implemented as generic classes in Typescript.
https://github.com/nickradford/ts-data-structures

data-structures generics typescript typescript-library

Last synced: 2 months ago
JSON representation

Common data structures implemented as generic classes in Typescript.

Awesome Lists containing this project

README

          

# ts-data-structures

[![](https://circleci.com/gh/nickradford/ts-data-structures.svg?style=svg)](https://circleci.com/gh/nickradford/ts-data-structures)
[![Coverage Status](https://coveralls.io/repos/github/nickradford/ts-data-structures/badge.svg?branch=master)](https://coveralls.io/github/nickradford/ts-data-structures?branch=master)

`ts-data-structures` is a TypeScript library which implements some common data structures. This is a personal effort to learn TypeScript and apply it in a library format. If you use it, let me know, and please report any issues you run into!

## Docs

[Visit Documentation Website](http://nickradford.github.com/ts-data-structures)

## Usage

```bash
yarn add @nickradford/ts-data-structures
```

```ts
import { BinaryTree } from '@nickradford/ts-data-structures'

const Tree: BinaryTree = new BinaryTree()
```

## License

[MIT](LICENSE)

## Special Thanks

Thanks to the **Awesome** [typescript-library-starter](https://github.com/alexjoverm/typescript-library-starter) by @alexjoverm with commits by many others.