JSPM

ts-sort-utils

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q18764F
  • License MIT

A set of packages to help you to learn array sort by typescript

Package Exports

  • ts-sort-utils

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-sort-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ts-sort-utils

sync + callback + Promise + Async/Await style sort array utils implementation in typescript

  • bubbleSort,
  • bubbleSortSync,
  • bubbleSortAsync,
  • bucketSort,
  • bucketSortSync,
  • bucketSortAsync,
  • countingSort,
  • countingSortSync,
  • countingSortAsync,
  • heapSort,
  • heapSortSync,
  • heapSortAsync,
  • insertionSort,
  • insertionSortSync,
  • insertionSortAsync,
  • mergeSort,
  • mergeSortSync,
  • mergeSortAsync,
  • quickSort,
  • quickSortSync,
  • quickSortAsync,
  • radixSort,
  • radixSortSync,
  • radixSortAsync,
  • selectionSort,
  • selectionSortSync,
  • selectionSortAsync,
  • shellSort,
  • shellSortSync,
  • shellSortAsync

Install

npm install ts-sort-utils --save-dev
yarn add  ts-sort-utils -D

Usages Api

cjs

    require("ts-sort-utils").bubbleSort,
    require("ts-sort-utils").bubbleSortSync,
    require("ts-sort-utils").bubbleSortAsync,
    require("ts-sort-utils").bucketSort,
    require("ts-sort-utils").bucketSortSync,
    require("ts-sort-utils").bucketSortAsync,
    require("ts-sort-utils").countingSort,
    require("ts-sort-utils").countingSortSync,
    require("ts-sort-utils").countingSortAsync,
    require("ts-sort-utils").heapSort,
    require("ts-sort-utils").heapSortSync,
    require("ts-sort-utils").heapSortAsync,
    require("ts-sort-utils").insertionSort,
    require("ts-sort-utils").insertionSortSync,
    require("ts-sort-utils").insertionSortAsync,
    require("ts-sort-utils").mergeSort,
    require("ts-sort-utils").mergeSortSync,
    require("ts-sort-utils").mergeSortAsync,
    require("ts-sort-utils").quickSort,
    require("ts-sort-utils").quickSortSync,
    require("ts-sort-utils").quickSortAsync,
    require("ts-sort-utils").radixSort,
    require("ts-sort-utils").radixSortSync,
    require("ts-sort-utils").radixSortAsync,
    require("ts-sort-utils").selectionSort,
    require("ts-sort-utils").selectionSortSync,
    require("ts-sort-utils").selectionSortAsync,
    require("ts-sort-utils").shellSort,
    require("ts-sort-utils").shellSortSync,
    require("ts-sort-utils").shellSortAsync

es6

import {
    bubbleSort,
    bubbleSortSync,
    bubbleSortAsync,
    bucketSort,
    bucketSortSync,
    bucketSortAsync,
    countingSort,
    countingSortSync,
    countingSortAsync,
    heapSort,
    heapSortSync,
    heapSortAsync,
    insertionSort,
    insertionSortSync,
    insertionSortAsync,
    mergeSort,
    mergeSortSync,
    mergeSortAsync,
    quickSort,
    quickSortSync,
    quickSortAsync,
    radixSort,
    radixSortSync,
    radixSortAsync,
    selectionSort,
    selectionSortSync,
    selectionSortAsync,
    shellSort,
    shellSortSync,
    shellSortAsync
}
from 'ts-sort-utils' 

commonjs use [sync + callback + Promise + Async/Await]

var quickSort = require("ts-sort-utils").quickSort;
quickSort([3,4,57,2,100,27,343],function(data){
    console.log("quickSort cb",data.join('-'))// output: 2-3-4-27-57-100-343
})


var quickSortSync = require("ts-sort-utils").quickSortSync;
console.log('quickSortSync sync',quickSortSync([3,4,57,2,100,27,343]))// output: [2,3, 4, 27, 57,100,343]



var quickSortAsync = require("ts-sort-utils").quickSortAsync;
quickSortAsync([3,4,57,2,100,27,343]).then((res) => {
  console.log('quickSortASync promise',res) // output: [2,3, 4, 27, 57,100,343]
}).catch((error) => {
  console.log('err',error)
})


var quickSortAsyncW = require("ts-sort-utils").quickSortAsync;
(async function () {
  var array4 = [3,4,57,2,100,27,343]
  var les = await quickSortAsyncW(array4)
  console.log('quickSortAsync await',les) // output: [2,3, 4, 27, 57,100,343]
})()


var quickSortAsyncAwait = require("ts-sort-utils").quickSortAsyncAwait;
(async function () {
  var array4 = [3,4,57,2,100,27,343]
  var les = await quickSortAsyncAwait(array4)
  console.log('quickSortAsyncAwait await',les) // output: [2,3, 4, 27, 57,100,343]
})()

es6 use [sync + callback + Promise + Async Await]

import { quickSort, quickSortSync, quickSortAsync, quickSortAsyncAwait} from 'ts-sort-utils'

quickSort([3,4,57,2,100,27,343],function(data){
    console.log("quickSort cb",data.join('-'))// output: 2-3-4-27-57-100-343
})

console.log('quickSortSync sync',quickSortSync([3,4,57,2,100,27,343]))

quickSortAsync([3,4,57,2,100,27,343]).then((res) => {
  console.log('quickSortASync promise',res) // output: [2,3, 4, 27, 57,100,343]
}).catch((error) => {
  console.log('err',error)
})

(async function () {
  var array4 = [3,4,57,2,100,27,343]
  var les = await quickSortAsync(array4)
  console.log('quickSortAsyncAwait await',les) // output: [2,3, 4, 27, 57,100,343]
})()

API

  • arr - The array to sort in place
  • callback - function to get sort array result