BunSpreader icon indicating copy to clipboard operation
BunSpreader copied to clipboard

Queue or LinkedList?

Open electricessence opened this issue 2 years ago • 0 comments

Just watched your video. Cool stuff.

So you don't have to write your own next time: https://www.npmjs.com/package/@tsdotnet/queue (still backed by an array, but growing the array does not cause a copy) https://www.npmjs.com/package/@tsdotnet/linked-node-list (faster than linked-list but unsafe) https://www.npmjs.com/package/@tsdotnet/linked-list (managed, but not as fast as linked-node-list)

electricessence avatar Jul 13 '22 16:07 electricessence