Ice Sheet System Model  4.18
Code documentation
Functions
binary_search.cpp File Reference

binary search on an integer array, that is already sorted More...

#include "../Exceptions/exceptions.h"
#include <stdio.h>

Go to the source code of this file.

Functions

int binary_search (int *poffset, int target, int *sorted_integers, int num_integers)
 

Detailed Description

binary search on an integer array, that is already sorted

Definition in file binary_search.cpp.

Function Documentation

◆ binary_search()

int binary_search ( int *  poffset,
int  target,
int *  sorted_integers,
int  num_integers 
)

Definition at line 14 of file binary_search.cpp.

14  { /*{{{*/
15 
16  /*output: */
17  int offset=0; //offset, if found
18  int found=0; //found=0 if target is not found, 1 otherwise.
19 
20  /*intermediary: */
21  int *beg = NULL;
22  int *end = NULL;
23  int *mid = NULL;
24 
25  _assert_(sorted_integers);
26 
27  // point to beginning and end of the array
28  beg=sorted_integers;
29  end=sorted_integers+num_integers;
30  mid=beg+(int)(num_integers/2);
31 
32  if (*beg==target){
33  found=1;
34  offset=0;
35  }
36  else if(*(end-1)==target){
37  found=1;
38  offset=num_integers-1;
39  }
40  else{
41  while((beg <= end) && (*mid != target)){
42  // is the target in lower or upper half?
43  if (target < *mid) {
44  end = mid - 1; //new end
45  mid = beg + (end-beg)/2; //new middle
46  }
47  else {
48  beg = mid + 1; //new beginning
49  mid = beg + (end-beg)/2; //new middle
50  }
51  }
52 
53  //did we find the target?
54  if (*mid == target) {
55  found=1;
56  offset=mid-sorted_integers;
57  }
58  else {
59  found=0;
60  }
61  }
62 
63  /*Assign output pointers:*/
64  *poffset=offset;
65 
66  /*Return result: */
67  return found;
68 } /*}}}*/
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37