标签:判断 OLE color div 解答 class 完成 int subject
public class Solution { public boolean Find(int target, int [][] array) { int rows=array.length; int cols=array[0].length; int i=rows-1,j=0; while(i>=0 && j<cols){ if(target<array[i][j]){ i--; }else if(target>array[i][j]){ j++; }else{ return true; } } return false; } }
左下角
往上越来越小
往右越来越大
标签:判断 OLE color div 解答 class 完成 int subject
原文地址:https://www.cnblogs.com/chanaichao/p/10118213.html