algorithmjs
Advanced tools
Comparing version 0.0.1 to 0.0.2
/** | ||
* Created by XadillaX on 2014/5/24. | ||
*/ | ||
var qsort = require("./qsort"); | ||
module.exports = { | ||
qsort : qsort | ||
}; | ||
@@ -55,3 +55,3 @@ /** | ||
} | ||
str += "\n]"; | ||
str += " ]"; | ||
@@ -58,0 +58,0 @@ return str; |
{ | ||
"name": "algorithmjs", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Node.js implement of some base algorithm and base data-structure.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,6 +9,7 @@ AlgorithmJS | ||
+ Data Structor | ||
+ Data Structure | ||
- Link List | ||
- ... | ||
+ Algorithm | ||
- Quick Sort | ||
- ... | ||
@@ -27,2 +28,6 @@ | ||
### Quick Sort | ||
Reference at [tester](https://github.com/XadillaX/algorithmjs/blob/master/test/algo/qsort.js). | ||
Contributors | ||
@@ -40,2 +45,2 @@ ----------- | ||
If you find a bug, please report it using the [issue tracker](issues). | ||
If you find a bug, please report it using the [issue tracker](https://github.com/XadillaX/algorithmjs/issues). |
@@ -5,1 +5,2 @@ /** | ||
require("./ds/linklist"); | ||
require("./algo/qsort"); |
Sorry, the diff of this file is not supported yet
343
44
28329
12