Add linked_list.

This commit is contained in:
Oleksii Trekhleb
2018-03-25 23:28:32 +03:00
parent e9a3b9d30c
commit 83b3a35834
9 changed files with 2640 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "data-structures",
"version": "1.0.0",
"description": "Data structures on JavaScript",
"main": "index.js",
"scripts": {
"build": "babel src -d build",
"babel-node": "babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trekhleb/data-structures.git"
},
"keywords": [],
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/trekhleb/data-structures/issues"
},
"homepage": "https://github.com/trekhleb/data-structures#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
}
}