leetcode295. 数据流的中位数

java 复制代码
class MedianFinder {
    //A为小根堆,B为大根堆
    List<Integer> A,B;
    public MedianFinder() {
        A = new ArrayList<Integer>();
        B = new ArrayList<Integer>();
    }
    
    public void addNum(int num) {
        int m = A.size(),n = B.size();
        if(m == n){
            insert(B,num);
            int top = deleteTop(B);
            insert(A,top);
        }else{
            insert(A,num);
            int top = deleteTop(A);
            insert(B,top);
        }
    }

    //删除堆顶元素并返回其值
    private int deleteTop(List<Integer> list){
        Collections.swap(list,0,list.size() - 1);
        int heapSize = list.size() - 1;
        int root = 0;
        while(root < heapSize/2){
            int left = root * 2 + 1,right = root * 2 + 2,largest = root;
            if(left < heapSize && comparee(list,left,largest))
                largest = left;
            if(right < heapSize &&  comparee(list,right,largest))
                largest = right;
            if(root == largest)
                break;
            Collections.swap(list,root,largest);
            root = largest;
        }
        return list.remove(list.size() - 1);
    }

    //A小根堆的比较方法:比较值<目标值?
    private boolean comparee(List<Integer> list,int source,int target){
        if(list == A)
            return list.get(source) < list.get(target);
        else
            return list.get(source) > list.get(target);
    }

    //将数插入到堆中
    private void insert(List<Integer> list,int num){
        list.add(num);
        int index = list.size() - 1;
        while(index > 0){
            int root = (index - 1) / 2;
            if(!comparee(list,index,root))
                break;
            Collections.swap(list,root,index);
            index = root;
        }
    }
    
    public double findMedian() {
        int m = A.size(),n = B.size();
        return (m==n) ? (A.get(0) + B.get(0)) / 2.0 : A.get(0);
    }
}
相关推荐
f***R811 小时前
解决bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException
java·数据库·sql
Halo_tjn11 小时前
Java 相关资料
java·开发语言·计算机
Slow菜鸟11 小时前
Java开发规范(十一)| 数据全生命周期治理规范—Java应用的“数据资产化手册”
java·servlet·oracle
丸码12 小时前
Java异常体系全解析
java·开发语言
v***885612 小时前
Springboot项目:使用MockMvc测试get和post接口(含单个和多个请求参数场景)
java·spring boot·后端
q***494512 小时前
Ubuntu介绍、与centos的区别、基于VMware安装Ubuntu Server 22.04、配置远程连接、安装jdk+Tomcat
java·ubuntu·centos
IMPYLH12 小时前
Lua 的 require 函数
java·开发语言·笔记·后端·junit·lua
曾经的三心草12 小时前
基于正倒排索引的Java文档搜索引擎1-实现索引模块-实现Parser类
java·开发语言·搜索引擎
vx_bscxy32212 小时前
告别毕设焦虑!Python 爬虫 + Java 系统 + 数据大屏,含详细开发文档 基于web的图书管理系统74010 (上万套实战教程,赠送源码)
java·前端·课程设计
小欣加油12 小时前
leetcode 1018 可被5整除的二进制前缀
数据结构·c++·算法·leetcode·职场和发展