M01NAF (PDF version)
M01 Chapter Contents
M01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

M01NAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

M01NAF searches an ordered vector of real numbers and returns the index of the first value equal to the sought-after item.

2  Specification

FUNCTION M01NAF ( VALID, RV, M1, M2, ITEM, IFAIL)
INTEGER M01NAF
INTEGER  M1, M2, IFAIL
REAL (KIND=nag_wp)  RV(M2), ITEM
LOGICAL  VALID

3  Description

M01NAF is based on Professor Niklaus Wirth's implementation of the Binary Search algorithm (see Wirth (2004)), but with two modifications. First, if the sought-after item is less than the value of the first element of the array to be searched, 0 is returned. Second, if a value equal to the sought-after item is not found, the index of the immediate lower value is returned.

4  References

Wirth N (2004) Algorithms and Data Structures 35–36 Prentice Hall

5  Parameters

1:     VALID – LOGICALInput
On entry: if VALID is set to .TRUE. parameter checking will be performed. If VALID is set to .FALSE. M01NAF will be called without parameter checking (which includes checking that array RV is sorted in ascending order) and the routine will return with IFAIL=0. See Section 8 for further details.
2:     RV(M2) – REAL (KIND=nag_wp) arrayInput
On entry: elements M1 to M2 contain real values to be searched.
Constraint: elements M1 to M2 of RV must be sorted in ascending order.
3:     M1 – INTEGERInput
On entry: the index of the first element of RV to be searched.
Constraint: M11.
4:     M2 – INTEGERInput
On entry: the index of the last element of RV to be searched.
Constraint: M2M1.
5:     ITEM – REAL (KIND=nag_wp)Input
On entry: the sought-after item.
6:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
(Note:  these errors will only be returned if VALID=.TRUE..)
IFAIL=2
On entry, elements M1 to M2 of RV are not sorted in ascending order.
IFAIL=3
On entry, M2<1.
IFAIL=4
On entry, M1>M2.

7  Accuracy

Not applicable.

8  Further Comments

The argument VALID should be used with caution. Set it to .FALSE. only if you are confident that the other arguments are correct, in particular that array RV is in fact arranged in ascending order. If you wish to search the same array RV many times, you are recommended to set VALID to .TRUE. on first call of M01NAF and to .FALSE. on subsequent calls, in order to minimize the amount of time spent checking RV, which may be significant if RV is large.
The time taken by M01NAF is Ologn, where n=M2-M1+1, when VALID=.FALSE..

9  Example

This example reads a list of double precision numbers and sought-after items and performs the search for these items.

9.1  Program Text

Program Text (m01nafe.f90)

9.2  Program Data

Program Data (m01nafe.d)

9.3  Program Results

Program Results (m01nafe.r)


M01NAF (PDF version)
M01 Chapter Contents
M01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012