剑指offer-二维数组中的查找

题目描述

在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。
static auto __=[](){
    std::ios::sync_with_stdio(false);
    cin.tie(nullptr);
    return nullptr;
}();
class Solution {
public:
    bool Find(int target, vector<vector<int> > array) {
        int n = array.size();
        int m = array[0].size();
        if(m == 0)
        {
            return false;
        }
        int i = 0,j = m - 1;
        while(i < n && j >= 0)
        {
            if(array[i][j] == target)
                return true;
            else if(array[i][j] > target)
            {
                j--;
            }
            else
            {
                i++;
            }
        }
        return false;
    }
};
原文地址:https://www.cnblogs.com/Jawen/p/10960211.html