Tagged Questions

11
votes
5answers
1k views

Topological Sorting using LINQ

I have a list of items that have a partial order relation, i. e, the list can be considered a partially ordered set. I want to sort this list in the same way as in this question. As correctly answered ...
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 ...