I am confused in understating the behavior of the code while searching for an element which does not exist in the array.
- The result of the element index i am looking for is always zero while declaring it as
int index;
. - The result of the element index i am looking for is random number while declaring it as
size_t index;
what is the difference between declaring the variable index asint index;
andsize_t;
in the code below.
The code
#include <stdio.h>
#define SIZE 5
int main(void)
{
int numbers[SIZE]={1,2,3,4,5};
int search =0; // This variable define the required number i am searching for
int start = 0 ;
int end = SIZE-1 ;
size_t index;
while (start <= end)
{
int middle = (start+end)/2;
if (search == numbers[middle])
{
index = middle;
}
if (search > numbers[middle])
{
start = middle+1 ;
}
else
{
end= middle-1 ;
}
}
printf("The index of the element is %d",index);
return 0;
}
The problem is that , the value of
index
is not initialized.initializing the variable to 0 does not solve your problem. Because you are using
index
to return the position of the array element.By initializing the
index = 0
will provide he same result for the elements not present in the array as well as the for the first element to the of the array .The better way is to initialize as
size_t index = -1;
So that the result for the elements not present in the array would b -1.
Also check for the access specifier used in the printf statement, for size_t datatype. It can be ,