首页 > 二维数组中的查找
头像
起名困难户啊啊
编辑于 2020-12-14 18:30
+ 关注

二维数组中的查找

static const auto io_sync_off=[](){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
return nullptr;
}();
class Solution {
public:
bool Find(int target, vector<vector<int> > array) {

int row = array.size();
int column = array[0].size();
int a = 0;
for(int i=0;i<row;i++)
{
for(int j=0;j<column;j++)
{
if(array[i][j]==target)
{
a++;
return true;
}
}
}
return false;
}
};

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐