KO
|
EN
gitlite — search
Search
#php
#python
#javascript
#ruby
#hacktoberfest
#vim
#video
#dotfiles
#macos
#plugin
#osdev
#cross-platform
algos-ts
★ 52
Open GitHub ↗
Super fast algorithms for typescript
Download README (.md)
Explore Similar Repositories
sorting-algos-visualizer
:
Visualization of common sorting algorithms: QuickSort, MergeSort, HeapSort, BubbleSort, InsertionSort
rust-lazysort
:
Iterate in a lazily achieved sorted order
blqsort
:
Fast Branchless Quicksort for C and C++ - Single- and Multithreaded Versions
blipsort
:
Branchless-Lomuto in Pattern-Defeating Quicksort
quicksort-blog-post
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
algos-ts
?
Download (.md)
# Algorithms # Install ``` npm install algos-ts ``` # WIP ** this is a work in progress. Stuff will change, but you can already use it and chat with me ** ## Use _import the function you need and use it. that's it!_ ``` import {bubbleSort, quickSort, insertionSort, mergeSort, binarySearch} from 'algos-ts'; const mergeSorted = mergeSort([1,6,123,456,123,43]); ``` _Made with :heart: in London_