[剑指offer]二维数组中的查找

    xiaoxiao2021-03-25  7

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

    class Solution { public: bool Find(int target, vector<vector<int> > array) { int r = array.size(); int c = array[r].size(); int m = r; int n = 0; while(m >= 0 && n <= c){ if(array[m][n]==target) return true; else if(array[m][n]>target) m--; else n++; } return false; } };
    转载请注明原文地址: https://ju.6miu.com/read-200351.html

    最新回复(0)