2021.0.1 • Published 2 years ago

@tabl/algo v2021.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

提供一些js、ts算法

四叉树

使用方法

git clone

npm i

vscode中"Open 'launch.json'"添加调试

{
            "name": "Current TS File",
            "type": "node",
            "request": "launch",
            "program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js",
            "args": [
                "${relativeFile}"
            ],
            "cwd": "${workspaceRoot}",
            "protocol": "inspector"
        }

其他一些算法库

https://github.com/trekhleb/javascript-algorithms/blob/master/README.zh-CN.md

https://github.com/hustcc/JS-Sorting-Algorithm