码迷,mamicode.com
首页 > 编程语言 > 详细

二维数组的查找

时间:2016-02-02 15:17:16      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:数组   查找   

题目:在一个二维数组中,每一行都按照从左到右递增,每一列都按照从上到下递增,请完成一个函数,输入这样一个二维数组和整数,判断其中是否含有该数。

代码:

#include<iostream>
#include<cstdlib>
#define COL 4
#define ROW 4

using namespace std;

bool find(int *arr,int columns,int rows,int num)
{
	bool found=false;
	if(*arr!=NULL && columns>0 && rows>0)
	{
		int row=0;
		int column=columns-1;
		while(row<rows && column>=0)
		{
			if(arr[row*columns+column]==num)
			{
				found=true;
				break;
			}
			else if(arr[row*columns+column]>num)
			{
				column--;
			}
			else
			{
				row++;
			}
		}
	}
	return found;
}

int main()
{   int matrix[][4] = {{1, 2, 8, 9}, {2, 4, 9, 12}, {4, 7, 10, 13}, {6, 8, 11, 15}};
	bool ret=find((int*)matrix,4,4,3);
	cout<<ret<<endl;
	system("pause");
	return 0;
}


二维数组的查找

标签:数组   查找   

原文地址:http://luminous.blog.51cto.com/10797288/1740655

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!