Tagged Questions
6
votes
3answers
605 views
What is the best way to sort a partially ordered list?
Probably best illustrated with a small example.
Given the relations
A < B < C
A < P < Q
Correct outputs would be
ABCPQ or APQBC or APBCQ ... etc.
In other words, any ordering is ...
-1
votes
3answers
71 views
How to sort depended objects by dependency for maximum concurrency
I have a list of dependencies (or better a DAG without cycles):
Input (for example):
Item A depends on nothing
Item B depends on C, E
Item C depends on A
Item D depends on E
Item E depends on A
...