#include <iostream> (30316)#include <vector> // 使用标准命名空间 using namespace std; bool binarySearchInMatrix(vector<vector<int>>& plants, int target) { int rows = plants.size(); if (rows == 0) return false; int cols = plants[0].size(); int row = 0; int col = cols - 1; while (row < rows && col >= 0) { if (plants[row][col] == target) { return true; } else if (plants[row][col] > target) { --col; // 向左移动 } else { ++row; // 向下移动 } } return false; }
点赞 评论

相关推荐

牛客网
牛客企业服务