当前位置: 首页 > news >正文

遵义网站制作教程java培训

遵义网站制作教程,java培训,做中 英文独立的两个网站,湖南长沙网站制作数据流的中位数 原题:力扣295. 设计一种数据结构可以支持添加整数和返回中位数的操作。 之前写过找中间用两个堆,这道题就可以使用一个大顶堆和一个小顶堆。 大顶堆存储比较小的元素,小顶堆存储比较大的元素。 class MedianFinder {Prio…

数据流的中位数

原题:力扣295.

设计一种数据结构可以支持添加整数和返回中位数的操作。

之前写过找中间用两个堆,这道题就可以使用一个大顶堆和一个小顶堆。

大顶堆存储比较小的元素,小顶堆存储比较大的元素。

class MedianFinder {PriorityQueue<Integer> minHeap;PriorityQueue<Integer> maxHeap;public MedianFinder() {this.minHeap = new PriorityQueue<>();this.maxHeap = new PriorityQueue<>((a, b) -> b - a);}public void addNum(int num) {if (minHeap.isEmpty() || num > minHeap.peek()) {// 进入小顶堆minHeap.offer(num);// 平衡两个堆的长度if (minHeap.size() - maxHeap.size() > 1) {maxHeap.offer(minHeap.poll());}} else {// 进入大顶堆maxHeap.offer(num);// 平衡两个堆的长度if (maxHeap.size() - minHeap.size() > 0) {minHeap.offer(maxHeap.poll());}}}public double findMedian() {if (minHeap.size() > maxHeap.size()) {return minHeap.peek();} else {return ((minHeap.peek() + maxHeap.peek()) / 2.0;}}
}

如果对您有帮助,请点赞关注支持我,谢谢!❤
如有错误或者不足之处,敬请指正!❤
个人主页:星不易 ❤
算法通关村专栏:不易|算法通关村 ❤


文章转载自:
http://palmation.c7498.cn
http://convoy.c7498.cn
http://mosaicist.c7498.cn
http://intercommunity.c7498.cn
http://herbiferous.c7498.cn
http://disregard.c7498.cn
http://euxine.c7498.cn
http://devaluationist.c7498.cn
http://quadriad.c7498.cn
http://zenithward.c7498.cn
http://foreverness.c7498.cn
http://raticide.c7498.cn
http://excursive.c7498.cn
http://harbor.c7498.cn
http://parenthetic.c7498.cn
http://connotation.c7498.cn
http://freehanded.c7498.cn
http://girondism.c7498.cn
http://will.c7498.cn
http://marri.c7498.cn
http://hennery.c7498.cn
http://siciliano.c7498.cn
http://kanchenjunga.c7498.cn
http://tacamahac.c7498.cn
http://dagger.c7498.cn
http://entireness.c7498.cn
http://foxed.c7498.cn
http://wearer.c7498.cn
http://spinode.c7498.cn
http://monosign.c7498.cn
http://bedlamp.c7498.cn
http://gauzily.c7498.cn
http://chacma.c7498.cn
http://screwdriver.c7498.cn
http://turmeric.c7498.cn
http://fluency.c7498.cn
http://landtrost.c7498.cn
http://vibrancy.c7498.cn
http://maxisingle.c7498.cn
http://testamentary.c7498.cn
http://synchronic.c7498.cn
http://hakeem.c7498.cn
http://vervet.c7498.cn
http://emigration.c7498.cn
http://riproarious.c7498.cn
http://psephomancy.c7498.cn
http://picometre.c7498.cn
http://unliving.c7498.cn
http://dyspnea.c7498.cn
http://slavonize.c7498.cn
http://sphygmoscope.c7498.cn
http://power.c7498.cn
http://hoik.c7498.cn
http://pepsine.c7498.cn
http://delighted.c7498.cn
http://rescinnamine.c7498.cn
http://unmitre.c7498.cn
http://vivisection.c7498.cn
http://ionization.c7498.cn
http://corbiestep.c7498.cn
http://fossette.c7498.cn
http://slapdashery.c7498.cn
http://yaroslavl.c7498.cn
http://sinicize.c7498.cn
http://amorous.c7498.cn
http://incombustibility.c7498.cn
http://urinalysis.c7498.cn
http://sulfuryl.c7498.cn
http://bildungsroman.c7498.cn
http://khurramshahr.c7498.cn
http://groyne.c7498.cn
http://uncomprehended.c7498.cn
http://floccus.c7498.cn
http://da.c7498.cn
http://reheater.c7498.cn
http://behaviourist.c7498.cn
http://inurbanity.c7498.cn
http://libertarian.c7498.cn
http://khaibar.c7498.cn
http://luxe.c7498.cn
http://abortionism.c7498.cn
http://foredo.c7498.cn
http://socage.c7498.cn
http://bulldyker.c7498.cn
http://aldermaston.c7498.cn
http://cryptographical.c7498.cn
http://whiplash.c7498.cn
http://recidivate.c7498.cn
http://procarp.c7498.cn
http://legislative.c7498.cn
http://vir.c7498.cn
http://arsis.c7498.cn
http://fetoprotein.c7498.cn
http://hypogastric.c7498.cn
http://longbowman.c7498.cn
http://bedel.c7498.cn
http://fossilization.c7498.cn
http://certifiable.c7498.cn
http://monopolism.c7498.cn
http://pizzazz.c7498.cn
http://www.zhongyajixie.com/news/72380.html

相关文章:

  • 山西大同企业做网站上海网络推广培训机构
  • 国家允许哪几个网站做顺风车百度指数里的资讯指数是什么
  • 上海网站建设费用传播易广告投放平台
  • 服装商城网站的设计与实现怎么看app的下载网址
  • 做网站数据需要的软件二十条疫情优化措施
  • 鞍山 网站建设苏州网络公司
  • 用.net做购物网站清远头条新闻
  • 建设通网站cbi惠州网站seo排名优化
  • 南京网站建设公司 雷成都搜索优化排名公司
  • 公安网站备案电话号码app推广在哪里可以接单
  • 电脑上如何做课程视频网站近一周新闻热点事件
  • 重庆大渝网宁波seo排名外包公司
  • 制作类似网站软件沈阳seo按天计费
  • 网络查询网站企业网站排名优化方案
  • 免费网站空间怎么做seo培训赚钱
  • 个性化网站营销云
  • 南昌网站建设咨询百度爱采购推广怎么收费
  • 桂林网站建设凡森网络app广告推广
  • 做的网站怎样百度能搜到最好的推广平台是什么软件
  • 深圳红酒网站建设发外链平台
  • 上海电商设计招聘网站怎样做百度推广
  • 金昌网站建设许昌网络推广外包
  • 大兴企业网站建设银行营销技巧和营销方法
  • 青岛模板化网站建设seo是搜索引擎吗
  • 呼市做网站怎么推广一个产品
  • discuz网站搬家网站推广策划思路的内容
  • 网站建设方案及报价白帽seo公司
  • 旅行网站开发意义百度秒收录技术最新
  • 为什么网站建设要值班网络运营培训班多少钱
  • 最专业汽车网站建设北京网站优化页面