Node.js Algorithm Modules
github.com
Node.js Algorithm Modules
1–8 of 8 posts
Re: Node.js Algorithm Modules
#2Re: Node.js Algorithm Modules
#3I've found algorithms.js to be a nice collection: https://github.com/felipernb/algorithms.js
Re: Node.js Algorithm Modules
#4Re: Node.js Algorithm Modules
#5The built in sorting algorithm (apparently it's mergesort in most browsers) in most implementations of JavaScript is often a little bit slow, so more sorting algorithms that people have implemented is a good thing. (I actually implemented Quicksort in Javascript and got about 5x better performance than Chrome's sort algorithm)
Re: Node.js Algorithm Modules
#6The built in sorting algorithm (apparently it's mergesort in most browsers) in most implementations of JavaScript is often a little bit slow, so more sorting algorithms that people have implemented is a good thing. (I actually implemented Quicksort in Javascript and got about 5x better performance than Chrome's sort algorithm)
Yup! You should wrap Quicksort in a node module and PR us to add it to the list :)
Re: Node.js Algorithm Modules
#7Re: Node.js Algorithm Modules
#8No graph algorithms yet..? That's odd.