Android开发经验谈Android开发Android技术知识

二维数组中的查找

2017-08-26  本文已影响70人  六尺帐篷

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

代码

public class Solution {
    public boolean Find(int target, int [][] array) {
        
        if(array == null || array.length == 0)
            return false;
        
        int rows = array.length;
        int cols = array[0].length;
        
        int row = 0;
        int col = cols-1;
        
        while(row < rows && col >= 0) {
            if(array[row][col] == target)
                return true;
            else if(array[row][col] > target)
                col--;
            else
                row++;
        }
        return false;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读