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
    }
}
相关推荐
Wzx1980122 小时前
go聊天室
开发语言·后端·golang
2***s6722 小时前
【Go】Go语言基础学习(Go安装配置、基础语法)
服务器·学习·golang
周杰伦_Jay4 小时前
【Go 语言主流 Web】 框架详细解析
开发语言·后端·微服务·架构·golang
cpp_25014 小时前
P5412 [YNOI2019] 排队
数据结构·c++·算法·题解·洛谷
w***76555 小时前
[golang][MAC]Go环境搭建+VsCode配置
vscode·macos·golang
r***F2626 小时前
Go-Gin Web 框架完整教程
前端·golang·gin
k***85846 小时前
【Golang】——Gin 框架中间件详解:从基础到实战
中间件·golang·gin
z***67776 小时前
【Golang】——Gin 框架中的表单处理与数据绑定
microsoft·golang·gin
云里雾里!13 小时前
力扣 977. 有序数组的平方:双指针法的优雅解法
算法·leetcode·职场和发展
r***F26215 小时前
【漏洞复现】CVE-2019-11043(PHP远程代码执行漏洞)信息安全论文_含漏洞复现完整过程_含Linux环境go语言编译环境安装
linux·golang·php