You're using numerical comparison (=) rather than string comparison (eq), and your loops aren't very Perlish. You don't describe your problem very clearly, but it looks like you want array2 to indicate values that follow corresponding values from array1: book follows read, apple follows eat, etc.
For the output, the first column should be things that don't appear in array2, and each subsequent column should be the values that follow the values in the previous column. If so, you want to reverse football and tennis in your example.
I found it made the most sense to work with hashes so I could model the "follows" relationship.
#!perl
use strict;
use warnings;
my @array1 = qw(read eat book apple play football novel);
my @array2 = qw(book apple novel banana football tennis magazine);
# The follows relationship
my %follow;
@follow{@array1} = @array2;
# Keeping track of what followers I have already used
my %h2 = map {$_=>1} @array2;
# Start with things that are not followers
my @out = ([grep !exists $h2{$_}, @array1]);
# Put followers of the previous column on as a new column
while (%h2) {
push @out, [@follow{@{$out[-1]}}];
delete @h2{@{$out[-1]}};
}
use Data::Dumper;
print Dumper(\@out);
END {
use Data::Dumper;
print Dumper(\@out);
}
Caution: Contents may have been coded under pressure.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.