0.6.0 • Published 8 years ago

algojs v0.6.0

Weekly downloads
4
License
UNLICENSED
Repository
github
Last release
8 years ago

algojs

Build Status

It provides Javascript implementation of fundamental data types, algorithms, and data structures.

Examples

Here there are some examples. API docs are published here.

npm install algojs --save

Sorting

var sort = require('algojs-sorting').insertionSort;

var array = [7,2,4,3,1,5,6,8];
sort(array);
// array is now sorted

Others

var algojs = require('algojs');

var points = [];
var convexHull = algojs.grahamScan(points);
0.6.0

8 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago