使用 std::vector 在 2D 矩阵中搜索元素
bool findInMatrix(int x, vector<vector<int>> &arr)
{
// Write your code here.
for(int i = 0;i<arr.size();i++)
{
for(int j = 0;j<arr[0].size();j++)
{
if(arr[i][j] == x)
return true;
}
}
return false;
}
任何人都可以帮助我解决这个问题,我能够通过所有测试用例,但得到 TLE!
bool findInMatrix(int x, vector<vector<int>> &arr)
{
// Write your code here.
for(int i = 0;i<arr.size();i++)
{
for(int j = 0;j<arr[0].size();j++)
{
if(arr[i][j] == x)
return true;
}
}
return false;
}
Can anybody help me with this soln, I am able to pass all the testcases but getting TLE!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内部for循环似乎有问题。当您应该循环第 i 个向量的大小时,您正在循环第 0 个向量的大小。每个向量可以有不同的大小。
There seems to be a problem in the inner for loop. You are looping over the size of the 0th vector, when you should be looping over the size of ith vector. Each vector can have a different size.
可能您需要使用 STL 的 find 这可能是最佳的。
May be you need to use STL 's find which could be optimal.