Tagged Questions
The partial-ordering tag has no wiki summary.
14
votes
4answers
836 views
Partial ordering with function template having undeduced context
While reading another question, i came to a problem with partial ordering, which i cut down to the following test-case
template<typename T>
struct Const { typedef void type; };
...
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 ...
10
votes
2answers
181 views
Generate a DAG from a poset using stricly functional programming
Here is my problem: I have a sequence S of (nonempty but possibly not distinct) sets s_i, and for each s_i need to know how many sets s_j in S (i ≠ j) are subsets of s_i.
I also need incremental ...
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 ...
4
votes
1answer
138 views
How to find a “minimal spanning set” for a collection of regular expressions?
CONTEXT:
I have a smallish (currently less than 100) but growing collection of Regular Expressions, and I want to optimize the process of determining for a given text string which of the REs in my ...
-1
votes
3answers
69 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
...