▲ | duped 2 days ago | |
Do you define "in degree" as the number of incoming edges from nodes that have not been visited/sorted yet? I believe what you've implemented is equivalent to Kahn's algorithm. Your double buffer is the queue. | ||
▲ | ww520 a day ago | parent [-] | |
It's a variant to the Kahn's algorithm. Here's the description in the comment on the function.
The successive root sets form a topological order.The in-degree of a node is the count of the incoming links of the leading nodes that the node is depending on. The in-degree can change as other nodes are removed from the graph. Kahn's algorithm uses a queue to hold the pending nodes and works on one node at a time. My insight is that it's simpler to treat the root nodes as sets, and to partition the root nodes into the current root set and the next root set, which work nicely with the double-buffer mechanism. As a benefit, the nodes in a root set are dependence-free with regard to the current round and can be used for parallel processing. |