flatqueue:非常快速且简单JavaScript优先级队列 源码
排队 JavaScript中非常快速的二进制堆优先级队列。 与相似,但将队列分别存储为项目ID和其数字优先级值的两个平面数组(无法指定比较器函数)。 这使队列更加有限,但速度快了好几倍。 const q = new FlatQueue ( ) ; for ( let i = 0 ; i < items . length ; i ++ ) { q . push ( i , items [ i ] . value ) ; // push an item by passing its id and value } q . peekValue ( ) ; // top item va
文件列表
flatqueue-master.zip
(预估有个8文件)
flatqueue-master
.gitignore
49B
package.json
795B
.travis.yml
38B
LICENSE
750B
index.js
2KB
test.js
1KB
README.md
727B
bench.js
1KB
暂无评论