#include
#define NOT_FOUND -1
int search(const int arr[],int target,int n)
{
int nPosition = 0 ;
for(int i = 0 ;i < n ;i ++)
{
if(target == arr[i])
{
nPosition = i ;
break ;
}
else
{
nPosition = NOT_FOUND ;
continue ;
}
}
return nPosition;
}
这是那个函数的修改,个人习惯 参考一下!