|
|
| Perl Monk, Perl Meditation | |
| PerlMonks |
Re: Reconstructing List Order From Partial Subsetsby hv (Parson) |
| on Jul 27, 2006 at 09:23 UTC ( #563999=note: print w/ replies, xml ) | Need Help?? |
|
Interesting, I do a similar thing for database upgrades - I extract related changes for a particular upgrade from the individual table descriptions, but they may express additional constraints with a "do this after that one", or "do this before that one". It looks like this:
I resolve the ordering using an approach similar to japhy's solution above, but at each pass I look for both things that can happen first and things that can happen last; when all constraints are satisfied, anything else can go in the middle. (If constraints remain, and a pass through the data finds neither a new 'first' nor a new 'last', there is a dependency loop.) Hugo
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||