Help for this page

Select Code to Download


  1. or download this
    sub top_x {
        my( $n, $aref ) = @_;
    ...
        }
        return @topN[ 0 .. $n ];
    }
    
  2. or download this
    void topN( int n, AV*data ) {
        int *topN;
    ...
        Safefree( topN );
        Inline_Stack_Done;
    }