You may have seen ordering brain teasers before:
During the latest round of the BrainBashers triathlon, Keith was fourth. Adrian is not the oldest, but is older than Duncan, who was not second. The child who was next in age to the youngest, finished second. The child who finished in third place is older than the child who finished first. Billy is younger than the child who finished in third place. Can you determine who finished where and place the children in order of age? [Source]
I'm looking for an algorithmic approach to solve what seems to be a very similar problem.
I have a set of objects which I would like to sort based on rules that related the objects to each other. For a given set of rules, there may be more than one solution. And in a valid solution, all the rules are met. It is also possible for a set of rules to have no valid solutions.
Example:
Objects: A, B, C, D, E, and F
Rules:
- C > A
- C < D
- F < C
- A > F
- E > F
- D > E
One possible solution:
F A C E D B
Note that object B was not related to any of the other objects so it doesn't matter where it appears in the sequence.
Surely this has been done before. Can anyone point me in the right direction? I will ultimately be performing this sorting in Java.
Related Question:
Java partially ordered Collection<E>