返回一组数据点到其均值的绝对偏差的平均值。参数可以是数字或名称,数组或包含数字的引用。
Returns the average of the absolute deviations of data points from their mean. Arguments can be Numbers or names, arrays, or references that contain Numbers.
这个题是求两个有序数组的中间数,其实这个中间数,如果是奇数,就是中间的那个数,如果是偶数,就是中间的两个数的和的平均值。
There are two sorted arrays A and B of size mand n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
应用推荐