grid_pathfinding icon indicating copy to clipboard operation
grid_pathfinding copied to clipboard

Faster priority queue implementation

Open tbvanderwoude opened this issue 1 year ago • 0 comments

Currently a binary heap is used. Alternatives include a pairing heap or a radix heap. This could bring insertion cost down from Θ(log n) to Θ(1)

tbvanderwoude avatar Aug 05 '24 14:08 tbvanderwoude