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

3、二维数组的查找

时间:2015-09-28 15:55:24      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

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

分析:每次都从二维数组的右上角元素开始找

public class Solution {
    public boolean Find(int [][] array,int target) {
        boolean isFound=false;
            int columnCount=array.length;
            int rowCount=array[0].length;
            if(array!=null&&columnCount!=0&&rowCount!=0){
                int currentRow=0;
                int currentColumn=columnCount-1;
                while(currentRow<rowCount&&currentColumn>=0){//循环迭代
                    if(array[currentRow][currentColumn]==target){//将右上角的元素与findValue比较
                        isFound=true;
                        break;
                    }else if(array[currentRow][currentColumn]>target){
                        currentColumn--;
                    }else{
                        currentRow++;
                    }
                }
            }
            return isFound;
    }
}

 

3、二维数组的查找

标签:

原文地址:http://www.cnblogs.com/YH-YH/p/4843984.html

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