1.3.3 • Published 3 years ago

ts-ds-algo v1.3.3

Weekly downloads
35
License
ISC
Repository
github
Last release
3 years ago

ds-ts-algo

ds-ts-algo is a typescript written utility package that allows users to use different pre-made data structures and algorithms in their javascript/typescript projects.

Data Structure included:

  • Stack
  • Set
  • Queue
  • Linked List
  • Doubly Linked List
  • Graph

Algorithms included:

  • Search:

    • Binary Search
    • Linear Search
  • Sort:

    • QuickSort
    • HeapSort
    • InsertionSort
    • SelectionSort
    • BubbleSort

Usage:

//use this for acessing search algorithms
import { searchAlgos } from "ds-ts-algo"; // es modules
const { searchAlgos } = require("ds-ts-algo"); //commanjs

const {/* Destructure the search Algorithms*/} = searchAlgos; 

//use this for acessing sort algorithms
import { sortAlgos } from "ds-ts-algo"; // es modules
const { sortAlgos } = require("ds-ts-algo"); //commanjs

const {/* Destructure the sort Algorithms*/} = sortAlgos; 

//use this for acessing data structures
import { dataStructures } from "ds-ts-algo"; // es modules
const { dataStructures } = require("ds-ts-algo"); //commanjs

const {/* Destructure the data Structures*/} = dataStructures; 
1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago