Thread rekursive subroutine
(11 answers)
Opened by kimmy at 2014-02-06 14:52
Hallo Zusammen,
ich habe folgende Liste: Code: (dl
)
1 [1]: a, b Die Liste bedeutet: - ein Knoten [1] hat zwei Blätter a und b - ein Knoten [2] hat ein Blatt c und ein Knoten [1] - usw. Was ich haben möchte ist: Mein Skript sieht wie folgt aus Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 my (%child, @ancestor, $node, $left, $right); $node = $1, $left = $2, $right = $3 if(/(.+?): (.+?), (.+)/); $child{$node} = $left . ' ' . $right; push @ancestor, $node; if($left =~ /^\w/ && $right =~ /^\[/){ my $children_node = child_check($child{$right}); $child{$node} = $left . ' ' . $children_node; # $right wird vom Array @ancestor entfernt @ancestor = grep !/^\Q$right\E$/, @ancestor; } foreach(@ancestor){ my $vater_id = $_; my $descendant = $child{$_}; print "$_:\t$descendant\n"; } sub child_check{ my $string = shift; my @arr_ance = split(/ /, $string); my @all_children; foreach my $ance(@arr_ance){ if (defined $child{$ance}) { my @descendants = split(/ /, $child{$ance}); foreach my $desc(@descendants){ if (defined $child{$desc}) { child_check($child{$desc}); } else{ push @all_children, $desc; } } } else{ push @all_children, $string; } } my $join_children = join(', ', @all_children); return $join_children; } Kann jemand mir sagen, was ich falsch gemacht habe? Last edited: 2014-02-06 15:17:48 +0100 (CET) |