题目描述
如何得到一个数据流中的中位数?如果从数据流中读出奇数个数值,那么中位数就是所有数值排序之后位于中间的数值。如果从数据流中读出偶数个数值,那么中位数就是所有数值排序之后中间两个数的平均值。我们使用Insert()方法读取数据流,使用GetMedian()方法获取当前读取数据的中位数。
代码
let arr = [];
function Insert(num)
{
// write code here
arr.push(num);
arr.sort((a,b)=>{
return a-b
})
}
function GetMedian(){
// write code here
if(arr.length%2==0){
return (arr[Math.floor(arr.length / 2) - 1] + arr[Math.floor(arr.length / 2)]) / 2
}else{
return arr[Math.floor(arr.length / 2)]
}
}
网友评论