- or download this
.....
if($object->some_recursive_call > $value){
$value = $object->some_recursive_call;
}
.....
- or download this
.....
my $temp = $object->some_recursive_call;
...
$value = temp;
}
.....
- or download this
.....
my $temp = $object->some_recursive_call;
$value = $temp if $temp > $value;
.....
- or download this
# perl
# node:
...
# calling the c function is:
getLeaves($tree,$node::child,$numKeys,$node::leaves,$leaf::weight);