美文网首页剑指offer——Java实现
面试题3:二维数组中的查找

面试题3:二维数组中的查找

作者: _minimal | 来源:发表于2016-10-05 19:23 被阅读37次

    题目描述

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

    代码实现

    public class Solution {
        public boolean Find(int [][] array,int target) {
            int m,n,x,y;
            m = array.length;//行数
            n = array[0].length;//列数
            x = m-1;y = 0;//坐标定在左下角
            while(x >= 0 && y <= n-1){
                if (target < array[x][y]){
                    x--;//遇小上移
                }
                else if (target > array[x][y]){
                    y++;//遇大右移
                }
                else{
                    return true;
                }
            }
            return false;
        }
    }
    

    主要思路

    从左下角或者右上角开始查找

    相关文章

      网友评论

        本文标题:面试题3:二维数组中的查找

        本文链接:https://www.haomeiwen.com/subject/lazsyttx.html