标签:class log poi dcl 排序 find 条件 mat turn
条件:
a[j] + a[j+1] < x*2
int findClosestPoint(int x,int a []) { int res = 0; int j = 0; while(j<a.length-1 && a[j]+a[j+1]<x*2) j++; res = Math.max(res,Math.abs(x-a[j])); return res; }
标签:class log poi dcl 排序 find 条件 mat turn
原文地址:http://www.cnblogs.com/qlky/p/7744035.html