文件名称:topological-sort:使用拓扑排序对依赖项进行排序
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-18 22:07:29
JavaScript
拓扑排序 排序依赖项 import topological from '../index.js' ; let items = [ { name : 'jquery-plugin1' , src : 'jquery-plugin-1.2.1.js' , dep : [ 'jquery' ] } , { name : 'jquery' , src : 'jquery-1.6.2.js' , dep : [ ] } , { name : 'underscore-plugin1' , src : 'underscore-plugin.js' , dep : [ 'underscore' ] } , { name : 'underscore' , src : 'underscore-1.2.2.js' , dep : [ ] } ] ; let sorted = topological
【文件预览】:
topological-sort-master
----.eslintrc(227B)
----index.js(3KB)
----package.json(1KB)
----test()
--------dependencySortSpec.js(3KB)
----shippable.yml(366B)
----LICENSE(1KB)
----.gitignore(44B)
----README.md(1KB)
----xunit.xml(711B)