Skip to content

rattanakchea/ts-data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ts-data-structures

Data structures built with Type Script https://rattanakchea.github.io/ts-data-structures

Installation:

You can install from my github repo. No plan for releasing to npm for now.

$ npm install rattanakchea/ts-data-structures

Code usage:

import { LinkedList } from "ts-data-structures";

const list = new LinkedList();
list.add("listItem");
// ...

Documentation

Document is generated by Typedoc which can be found at Documentation.

Developing

  • ts-node for development

  • ts-jest for testing

  • travis

  • use npm test run test and display test coverage.

Todo

  • Add dependencies and dev dependencies
  • Add test suites.
  • Add common libraries (LinkedList, Stack, Queue, Binary Tree)
  • Add advanced libraries

License

This software uses the MIT license. See LICENSE for details.