二维数组中某一元素的查找

时间:2022-03-14 19:00:40
/*
面试例题3:二维数组中某一元素的查找
:在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。
请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
解题思路:
首先选取数组中右上角的数字,如果该数字等于要查找的数字,查找过程结束;
如果该数字大于要查找的数字,剔除这个数字所在的列;
如果该数字小于要查找的数字,剔除这个数字所在的行。
即:如果要查找的数字不在数组的右上角,则每一次都在数组的查找范围中剔除一行或者一列,
这样每一步都可以缩小查找的范围,直到找到要查找的数字,或者查找范围为空。
*/

#if 0
#include<stdio.h> //待调试
#define N 3
bool Find(int* matrix,int rows,int columns,int number)
{
bool found = false;
if(matrix != NULL && rows > 0 && columns > 0)
{
int row = 0;
int column = columns -1;
while( row <rows && column >= 0)
{
if(matrix[row*columns +column] == number) //找到这个数字
{
found = true;
break;
}
else if(matrix[row*columns + column] > number) //剔除所在的列
--column;
else
++row; //剔除所在的行
}
}
return found;
}
int main()
{
int a[N][N] = {
{1,2,3},
{4,5,6},
{7,8,9},
};
int ret = Find(*a,N,N,6);
printf("%d\n",ret);
return 0;
}
#endif