Help for this page

Select Code to Download


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