Golang | Leetcode Golang题解之第295题数据流的中位数

题目:

题解:

Go 复制代码
type MedianFinder struct {
    nums        *redblacktree.Tree
    total       int
    left, right iterator
}

func Constructor() MedianFinder {
    return MedianFinder{nums: redblacktree.NewWithIntComparator()}
}

func (mf *MedianFinder) AddNum(num int) {
    if count, has := mf.nums.Get(num); has {
        mf.nums.Put(num, count.(int)+1)
    } else {
        mf.nums.Put(num, 1)
    }
    if mf.total == 0 {
        it := mf.nums.Iterator()
        it.Next()
        mf.left = iterator{it, 1}
        mf.right = mf.left
    } else if mf.total%2 == 1 {
        if num < mf.left.Key().(int) {
            mf.left.prev()
        } else {
            mf.right.next()
        }
    } else {
        if mf.left.Key().(int) < num && num < mf.right.Key().(int) {
            mf.left.next()
            mf.right.prev()
        } else if num >= mf.right.Key().(int) {
            mf.left.next()
        } else {
            mf.right.prev()
            mf.left = mf.right
        }
    }
    mf.total++
}

func (mf *MedianFinder) FindMedian() float64 {
    return float64(mf.left.Key().(int)+mf.right.Key().(int)) / 2
}

type iterator struct {
    redblacktree.Iterator
    count int
}

func (it *iterator) prev() {
    if it.count > 1 {
        it.count--
    } else {
        it.Prev()
        it.count = it.Value().(int)
    }
}

func (it *iterator) next() {
    if it.count < it.Value().(int) {
        it.count++
    } else {
        it.Next()
        it.count = 1
    }
}
相关推荐
阮瑭雅16 分钟前
Bash语言的微服务
开发语言·后端·golang
霍徵琅40 分钟前
CSS语言的硬件驱动
开发语言·后端·golang
霍珵蕴43 分钟前
Lisp语言的计算机视觉
开发语言·后端·golang
褚翾澜43 分钟前
Lisp语言的无线通信
开发语言·后端·golang
甄霓裳1 小时前
APL语言的游戏音效
开发语言·后端·golang
破东风1 小时前
leetcode每日一题:替换子串得到平衡字符串
算法·leetcode·滑动窗口
梭七y7 小时前
【力扣hot100题】(032)排序链表
算法·leetcode·链表
SsummerC7 小时前
【leetcode100】数组中的第K个最大元素
python·算法·leetcode
编程绿豆侠7 小时前
力扣HOT100之链表:206. 反转链表
算法·leetcode·链表
冷琅辞10 小时前
Elixir语言的云计算
开发语言·后端·golang