Ice Sheet System Model  4.18
Code documentation
binary_search.cpp
Go to the documentation of this file.
1 
5 #ifdef HAVE_CONFIG_H
6  #include <config.h>
7 #else
8 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
9 #endif
10 
11 #include "../Exceptions/exceptions.h"
12 #include <stdio.h>
13 
14 int binary_search(int* poffset,int target,int* sorted_integers,int num_integers){ /*{{{*/
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
binary_search
int binary_search(int *poffset, int target, int *sorted_integers, int num_integers)
Definition: binary_search.cpp:14