class Solution { public: bool Find(int target, vector<vector<int> > array) { for(auto i:array)//c++11语法,逐行遍历 { if(binary_search(i, target)) return true;//在本行中找到目标 } return false; } //二分查找函数 bool binary_search(vector<int&g...