Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
This is not very thought out or tested, probably not very efficient on large lists, but I think its interesting, and it seems to work:
#!/usr/bin/perl use strict; use warnings; my @array1 = qw(dog cat rat mouse); my @array2 = qw(dog rat mouse bird); my @array3 = qw(cat rat fish mouse); #my @array1= ( 1, 3, 4, 6 ); #my @array2= ( 1, 2, 4, 6 ); #my @array3= ( 1, 2, 3, 5 ); init_cmp($_) for \@array1, \@array2, \@array3; my %animals; undef @animals{@array1, @array2, @array3}; print join(",", keys %animals), "\n"; my @sorted = sort { my_cmp($a, $b) } keys %animals; print join(",", @sorted), "\n"; { my %lt; sub init_cmp { my ($this, @rest) = @{$_[0]}; while ( @rest ) { $lt{$this}{$rest[0]} = 1; $this = shift @rest; } } sub is_lt { my ($first, $next) = @_; return unless exists $lt{$first}; return 1 if $lt{$first}{$next}; for my $mid ( keys %{$lt{$first}} ) { return 1 if is_lt($mid, $next); } return; } sub my_cmp { my ($first, $next) = @_; return is_lt($first, $next) ? -1 : 1; } }

In reply to Re: "Intelligent" array joining by runrig
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 musing on the Monastery: (8)
As of 2024-04-18 16:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found