题解 | #二维数组中的查找#

二维数组中的查找

https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e

#include <vector>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param target int整型 
     * @param array int整型vector<vector<>> 
     * @return bool布尔型
     */
    bool Find(int target, vector<vector<int> >& array) {
        // write code here
        bool result=false;
        int raw=array.size();
        int col=0;
        if(raw==0){
            return false;
        }else{
            col=array[0].size();
            if(col==0){
                return false;
            }
        }
        
        for(int i=0;i<raw;i++){
            if(array[i][0]>target){
                break;
            }
            for(int j=0;j<col;j++){
                if(array[i][j]>target){
                    continue;
                }
                if(array[i][j]==target){
                    return true;
                }
            }
        }
        return result;
    }
};

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务