题解 | #数据流中的中位数#

数据流中的中位数

https://www.nowcoder.com/practice/9be0172896bd43948f8a32fb954e1be1

using System.Collections.Generic;

class Solution {
    List<int> list = new List<int>();
    public void Insert(int num) {
        // write code here
        int nFI = list.FindIndex(r => r > num);
        if (nFI > -1)
            list.Insert(nFI, num);
        else
            list.Add(num);
    }

    public double GetMedian() {
        // write code here
        int nM = list.Count / 2;
        if (list.Count % 2 == 0)
            return (list[nM] + list[nM - 1]) / 2.0;
        else
            return list[nM];
    }
}

全部评论

相关推荐

10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务