NAG C Library Function Document

nag_search_int (m01nbc)

1
Purpose

nag_search_int (m01nbc) searches an ordered vector of integer numbers and returns the index of the first value equal to the sought-after item.

2
Specification

#include <nag.h>
#include <nagm01.h>
Integer  nag_search_int (Nag_Boolean validate, const Integer iv[], Integer m1, Integer m2, Integer item, NagError *fail)

3
Description

nag_search_int (m01nbc) 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, -1 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
Arguments

1:     validate Nag_BooleanInput
On entry: if validate is set to Nag_TRUE argument checking will be performed. If validate is set to Nag_FALSE nag_search_int (m01nbc) will be called without argument checking (which includes checking that array iv is sorted in ascending order) and the function will return with fail.code= NE_NOERROR. See Section 9 for further details.
2:     iv[m2+1] const IntegerInput
On entry: elements m1 to m2 contain integer values to be searched.
Constraint: elements m1 to m2 of iv must be sorted in ascending order.
3:     m1 IntegerInput
On entry: the index of the first element of iv to be searched.
Constraint: m10.
4:     m2 IntegerInput
On entry: the index of the last element of iv to be searched.
Constraint: m2m1.
5:     item IntegerInput
On entry: the sought-after item.
6:     fail NagError *Input/Output
The NAG error argument (see Section 3.7 in How to Use the NAG Library and its Documentation).

6
Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 2.3.1.2 in How to Use the NAG Library and its Documentation for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, m1=value.
Constraint: m10.
NE_INT_2
On entry, m1=value, m2=value.
Constraint: m1m2.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 2.7.6 in How to Use the NAG Library and its Documentation for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 2.7.5 in How to Use the NAG Library and its Documentation for further information.
NE_NOT_INCREASING
On entry, iv must be sorted in ascending order: iv​ element ​value>​ element ​value.

7
Accuracy

Not applicable.

8
Parallelism and Performance

nag_search_int (m01nbc) is not threaded in any implementation.

9
Further Comments

The argument validate should be used with caution. Set it to Nag_FALSE only if you are confident that the other arguments are correct, in particular that array iv is in fact arranged in ascending order. If you wish to search the same array iv many times, you are recommended to set validate to Nag_TRUE on first call of nag_search_int (m01nbc) and to Nag_FALSE on subsequent calls, in order to minimize the amount of time spent checking iv, which may be significant if iv is large.
The time taken by nag_search_int (m01nbc) is Ologn, where n=m2-m1+1, when validate=Nag_FALSE.

10
Example

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

10.1
Program Text

Program Text (m01nbce.c)

10.2
Program Data

Program Data (m01nbce.d)

10.3
Program Results

Program Results (m01nbce.r)