The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

RangeQuery - retrieves the minimum/maximum value from a set within a given range.

SYNOPSIS

    use RangeQuery;

    my @set = (4,2,8,6,1,2);
    my $range = RangeQuery->new(@set);

    my $min = $range->min_value(1,3);   # 2
    my $max = $range->max_value (4, 6); # 6

DESCRIPTION

Retrieves the minimum/maximum value in a given range. The range is represented with two 1-based indexes. It takes O(n log n) to build the RangeQuery object and O(1) to retrieve a value.

METHODS

new

Creates a new RangeQuery object. This builds the appropriate data structure in order to retrieve values efficiently.

max_value

Retrieves the maximum value in a given range. This receives two 1-based indexes.

min_value

Retrieves the minimum value in a given range. This receives two 1-based indexes.

SEE ALSO

You can check a tutorial from TopCoder, http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=lowestCommonAncestor

AUTHOR

João Carreira, <joao.carreira@ist.utl.pt>

COPYRIGHT AND LICENSE

Copyright (C) 2009 by João Carreira

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.