Help for this page

Select Code to Download


  1. or download this
    my $heap = Heap->new;
    
  2. or download this
    $heap->insert( $max);
    $heap->extract_min if $heap->size > $k;
    
  3. or download this
    map $heap->extract_min, 1 .. $heap->size;