回复 8# zxp209
$ cat connect_id.pl
use strict;
use warnings;
my %hConnect;
# read data
while(<DATA>){
next if(m/^\s*#/);
if(m/(\S+)\s+(\S+)/){
push @{$hConnect{$1}},$2;
}
}
foreach(sort {$a <=> $b} keys %hConnect){
print "===path of $_===\n";
my %hLoop = ();
foreach( next_connect("$_", $_, %hLoop)){
print "$_\n";
}
}
sub next_connect{
my ($sString, $sID, %hLoop) = @_;
#my %hLoop = %{$rhLoop};
my @aData = ();
# check next
return $sString if(! exists $hConnect{$sID});
# loop check
return "$sString(loop,stop)" if(exists $hLoop{$sID});
$hLoop{$sID} = 1;
# we got the many "next id"
foreach my $sNext (@{$hConnect{$sID}}){
push @aData, next_connect("$sString,$sNext", $sNext, %hLoop);
}
return @aData;
}
__DATA__
#root_id id
1 2
1 9
2 3
2 4
3 1
3 9
4 1
4 9
$ perl connect_id.pl
===path of 1===
1,2,3,1(loop,stop)
1,2,3,9
1,2,4,1(loop,stop)
1,2,4,9
1,9
===path of 2===
2,3,1,2(loop,stop)
2,3,1,9
2,3,9
2,4,1,2(loop,stop)
2,4,1,9
2,4,9
===path of 3===
3,1,2,3(loop,stop)
3,1,2,4,1(loop,stop)
3,1,2,4,9
3,1,9
3,9
===path of 4===
4,1,2,3,1(loop,stop)
4,1,2,3,9
4,1,2,4(loop,stop)
4,1,9
4,9
|