-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Something like
sorted(fifo, edges);
sorted(lifo, edges);
sorted(Array, edges);
sorted(() => new Heap(increasing), edges);Kahn's algo needs {push, pop/shift, isEmpty/length/size}. The convenience wrapper needs to build a queue from the set of free vertices. Currently done with push, but could be done with from.