算法 - 排序数组中与x最近一点
Posted qlky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法 - 排序数组中与x最近一点相关的知识,希望对你有一定的参考价值。
条件:
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; }
以上是关于算法 - 排序数组中与x最近一点的主要内容,如果未能解决你的问题,请参考以下文章