NAG CL Interface
m01ncc (charvec_​search)

Settings help

CL Name Style:


1 Purpose

m01ncc examines an ordered vector of strings and returns the index of the first value equal to the sought-after item. Character items are compared according to the ASCII collating sequence.

2 Specification

#include <nag.h>
Integer  m01ncc (Nag_Boolean validate, const char *ch[], Integer m1, Integer m2, const char *item, NagError *fail)
The function may be called by the names: m01ncc, nag_sort_charvec_search or nag_search_char.

3 Description

m01ncc 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_Boolean Input
On entry: if validate is set to Nag_TRUE argument checking will be performed. If validate is set to Nag_FALSE m01ncc will be called without argument checking, which includes checking that array ch is sorted in ascending order and the function will return with fail.code= NE_NOERROR. See Section 9 for further details.
2: ch[m2+1] const char * Input
On entry: elements m1 to m2 contain null terminated strings to be searched.
Constraint: elements m1 to m2 of ch must be sorted in ascending order. The length of each element of ch must not exceed 255. Trailing space characters are ignored.
3: m1 Integer Input
On entry: the index of the first element of ch to be searched.
Constraint: m10.
4: m2 Integer Input
On entry: the index of the last element of ch to be searched.
Constraint: m2m1.
5: item const char * Input
On entry: the sought-after item. Trailing space characters are ignored.
6: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

Note: these errors will only be returned if validate=Nag_TRUE.).
NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_CHAR_LEN_INVALID
On entry, the length of each element of ch must be at most 255: maximum string length =value.
NE_INT
On entry, m1=value.
Constraint: m10.
On entry, m1=value.
Constraint: m11-1.
NE_INT_2
On entry, m1=value and m2=value.
Constraint: m2m1.
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 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_NOT_INCREASING
On entry, ch must be sorted in ascending order: ch​ element ​value>​ element ​value.

7 Accuracy

Not applicable.

8 Parallelism and Performance

m01ncc 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 ch is in fact arranged in ascending order. If you wish to search the same array ch many times, you are recommended to set validate to Nag_TRUE on first call of m01ncc and to Nag_FALSE on subsequent calls, in order to minimize the amount of time spent checking ch, which may be significant if ch is large.
The time taken by m01ncc is O(log(n)), where n=m2-m1+1, when validate=Nag_FALSE.

10 Example

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

10.1 Program Text

Program Text (m01ncce.c)

10.2 Program Data

Program Data (m01ncce.d)

10.3 Program Results

Program Results (m01ncce.r)