Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; sub tsort { my( %pred, %succ ); for my $av ( @_ ) { for my $i ( 1 .. $#$av ) { $pred{$av->[$i]}{$av->[$i-1]} ||= 1; $succ{$av->[$i-1]}{$av->[$i]} ||= 1; } $succ{$av->[-1]} ||= {}; } my @output; while( %succ ) { my( $best, $count ); for my $item ( keys(%succ) ) { my $preds= keys %{$pred{$item}}; if( ! defined($count) || $preds < $count ) { $best= $item; $count= $preds; last if 0 == $count; } } warn "Data contains a cycle, breaking at $best.\n" if 0 < $count; push @output, $best; for my $succ ( keys %{$succ{$best}} ) { delete $pred{$succ}{$best}; } delete $succ{$best}; } return wantarray ? @output : \@output; } my @array1= ( 1, 3, 4, 6 ); my @array2= ( 1, 2, 4, 6 ); my @array3= ( 1, 2, 3, 5 ); my @output= tsort( \( @array1, @array2, @array3 ) ); print "@output\n"; @output= tsort( [1,2,3,4], [1,3,2,4] ); print "@output\n";
output is
1 2 3 4 5 6 Data contains a cycle, breaking at 2. 1 2 3 4

- tye        


In reply to Re: "Intelligent" array joining (topological sort) by tye
in thread "Intelligent" array joining by ngomong

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-03-19 09:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found