Mapleleave • 3年前
int maximumGap(int a,double x[])
{
sort(x, x + a);
for (int i = 0; i < a - 1; i++)
d[i] = x[i + 1] - x[i];
sort(d, d + a - 1);
cout.setf(ios::fixed);
cout << fixed << setprecision(2) << d[a - 2] << endl;
return 0;
}
评论:
请先登录,才能进行评论