码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer_02_二维数组中的查找

时间:2014-09-06 11:00:53      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   2014   sp   log   amp   c   ios   

#include <iostream>

using namespace std;

bool ifHasNum(int *data,int row, int col, int num){
	if(data == NULL || row <= 0 || col <= 0){
		return false;
	}
	int i = 0; 
	int j = col - 1;
	while(i < row && j >= 0){
		if(num == data[i * col + j]){
			cout <<"i = "<<i<< "j="<<j<<endl;
			return true;
		} else if (num < data[i * col + j]){
			j--;			
		} else {
			i++;
		}
	}
}

int main(){
	int data[16] = {1, 2 , 8 , 9, 2, 4, 9, 12, 4, 7, 10, 13, 6, 8, 11, 15};
	cout<<ifHasNum(data, 4, 4, 9)<<endl;
	cout<<ifHasNum(data, 4, 4, 8)<<endl;
	cout<<ifHasNum(data, 4, 4, 15)<<endl;
	cout<<ifHasNum(data, 4, 4, 1)<<endl;
	cout<<ifHasNum(data, 4, 4, 33)<<endl;
	cout<<ifHasNum(data, 4, 4, -1)<<endl;
	cout<<ifHasNum(NULL, 4, 4, -1)<<endl;
	cout<<ifHasNum(NULL, -4, 4, -1)<<endl;
	cout<<ifHasNum(NULL, 4, -4, -1)<<endl;
} 

剑指offer_02_二维数组中的查找

标签:blog   os   io   2014   sp   log   amp   c   ios   

原文地址:http://blog.csdn.net/wyj7260/article/details/39099331

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