Skip to content

Commit 4cd76b1

Browse files
$ codebricks fork aureooms/js-algo
1 parent ed5e6ea commit 4cd76b1

File tree

7 files changed

+31
-2738
lines changed

7 files changed

+31
-2738
lines changed

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
[js-algo](http://aureooms.github.io/js-algo)
1+
[js-data-structures](http://aureooms.github.io/js-data-structures)
22
====
3-
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/aureooms/js-algo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
3+
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/aureooms/js-data-structures?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

55
Playground for algorithmic code bricks in JavaScript.
66

7-
[![NPM license](http://img.shields.io/npm/l/aureooms-js-algo.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-algo/master/LICENSE)
8-
[![NPM version](http://img.shields.io/npm/v/aureooms-js-algo.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-algo)
9-
[![Bower version](http://img.shields.io/bower/v/aureooms-js-algo.svg?style=flat)](http://bower.io/search/?q=aureooms-js-algo)
10-
[![Build Status](http://img.shields.io/travis/aureooms/js-algo.svg?style=flat)](https://travis-ci.org/aureooms/js-algo)
11-
[![Coverage Status](http://img.shields.io/coveralls/aureooms/js-algo.svg?style=flat)](https://coveralls.io/r/aureooms/js-algo)
12-
[![Dependencies Status](http://img.shields.io/david/aureooms/js-algo.svg?style=flat)](https://david-dm.org/aureooms/js-algo#info=dependencies)
13-
[![devDependencies Status](http://img.shields.io/david/dev/aureooms/js-algo.svg?style=flat)](https://david-dm.org/aureooms/js-algo#info=devDependencies)
14-
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-algo.svg?style=flat)](https://codeclimate.com/github/aureooms/js-algo)
15-
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-algo.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-algo)
16-
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-algo.svg?style=flat)](https://github.com/aureooms/js-algo/issues)
7+
[![NPM license](http://img.shields.io/npm/l/aureooms-js-data-structures.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-data-structures/master/LICENSE)
8+
[![NPM version](http://img.shields.io/npm/v/aureooms-js-data-structures.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-data-structures)
9+
[![Bower version](http://img.shields.io/bower/v/aureooms-js-data-structures.svg?style=flat)](http://bower.io/search/?q=aureooms-js-data-structures)
10+
[![Build Status](http://img.shields.io/travis/aureooms/js-data-structures.svg?style=flat)](https://travis-ci.org/aureooms/js-data-structures)
11+
[![Coverage Status](http://img.shields.io/coveralls/aureooms/js-data-structures.svg?style=flat)](https://coveralls.io/r/aureooms/js-data-structures)
12+
[![Dependencies Status](http://img.shields.io/david/aureooms/js-data-structures.svg?style=flat)](https://david-dm.org/aureooms/js-data-structures#info=dependencies)
13+
[![devDependencies Status](http://img.shields.io/david/dev/aureooms/js-data-structures.svg?style=flat)](https://david-dm.org/aureooms/js-data-structures#info=devDependencies)
14+
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-data-structures.svg?style=flat)](https://codeclimate.com/github/aureooms/js-data-structures)
15+
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-data-structures.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-data-structures)
16+
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-data-structures.svg?style=flat)](https://github.com/aureooms/js-data-structures/issues)
1717

1818

1919
This project is just a playground for any algorithm / procedure, data structure
2020
that doesn't fit in any of those project,
2121

22-
- [aureooms/js-algo](https://github.com/aureooms/js-algo) : playground for algorithmic code bricks in JavaScript
22+
- [aureooms/js-data-structures](https://github.com/aureooms/js-data-structures) : playground for algorithmic code bricks in JavaScript
2323
- [aureooms/js-array](https://github.com/aureooms/js-array) : array manipulation code bricks for JavaScript
2424
- [aureooms/js-bit](https://github.com/aureooms/js-bit) : bit twiddling hacks code bricks for JavaScript
2525
- [aureooms/js-bst](https://github.com/aureooms/js-bst) : binary search tree code bricks in JavaScript
@@ -91,3 +91,5 @@ Other reference:
9191
- http://en.wikipedia.org/wiki/Disjoint-set_data_structure
9292
- http://en.wikipedia.org/wiki/Partition_refinement
9393
- http://cglab.ca/publications.html
94+
95+
***( forked from [js-algo](https://github.com/aureooms/js-algo) )***

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"homepage": "https://aureooms.github.io/js-algo",
3-
"name": "aureooms-js-algo",
2+
"homepage": "http://aureooms.github.io/js-data-structures/",
3+
"name": "aureooms-js-data-structures",
44
"license": "AGPL-3.0",
5-
"description": "playground for algorithmic code bricks in JavaScript",
5+
"description": "Data structures code bricks for JavaScript",
66
"version": "2.0.5",
7-
"main": "js/dist/algo.js",
7+
"main": "js/dist/data-structures.js",
88
"ignore": [
99
"js/index.js",
1010
"js/src",

0 commit comments

Comments
 (0)