Algorithms and data structures for JS/TS
  • Introduction
  • GETTING STARTED
    • TS
    • Node.js
    • ES Modules
    • Browsers
  • PUBLIC API
    • How to read
    • Linked lists
      • SinglyLinkedList
      • DoublyLinkedList
      • CircularlyLinkedList
    • Stacks and queues
      • LinkedStack
      • LinkedQueue
      • LinkedDeque
      • CircularQueue
      • CircularArrayBuffer
      • UnsortedPriorityQueue
      • SortedPriorityQueue
      • AdaptableHeapPriorityQueue
    • Maps
      • SortedMap
      • MaximaSet
      • AVLTreeMap
      • SplayTreeMap
      • RedBlackTreeMap
    • Trees
      • GeneralTree
      • LinkedBinaryTree
      • PreorderTreeTraversal
      • InorderTreeTraversal
      • PostorderTreeTraversal
      • EulerTourTreeTraversal
    • Searches
      • Binary search
      • Quick select
    • Text processing
      • Longest common subsequence
      • Boyer-Moore
      • Knuth-Morris-Pratt
    • Position
    • Locator
    • Comparators
  • CONTRIBUTION NOTES
    • How to contribute
    • Project structure
  • Changelog
Powered by GitBook
On this page

Was this helpful?

Introduction

ADSJS - algorithms and data structures for JavaScript and TypeScript.

NextTS

Last updated 5 years ago

Was this helpful?

This package provides an implementation of computer science algorithms and data structures with strong types and full test coverage and should be beneficial for those who uses as their primary language. Though it is also supplied with builds for , and traditional .

Information about public API classes and functions available for client code is provided in the corresponding section.

This project will get 1.0.0 version as soon as its public API will be considered stable and not a subject to change in future. Anyway compatibility between versions is on high priority so minimum breaking changes are expected.

For contributors visit and .

This package is going to have continuous support. More work on improving performance and memory efficiency is expected. New functional will be released after the existing one considered stable enough and performant. Please visit for details of the releases.

TypeScript
Node.js
ES Modules
bundles for browsers
PUBLIC API
how to contribute
project structure
changelog