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

用php做图书管理网站内容营销是什么意思

用php做图书管理网站,内容营销是什么意思,网络网站维护费怎么做会计分录,叫企业做的网站可不可以自己改主题参考题解 题目:给定一个数组,输出 前k个高频元素。 思路: 遍历数组,建立小根堆(小根堆的元素是元组(num,freq),排序规则是每个元素的频率)。 下面使用数组‘heap’&…

参考题解

题目:给定一个数组,输出 前k个高频元素。
思路:
遍历数组,建立小根堆(小根堆的元素是元组(num,freq),排序规则是每个元素的频率)。
下面使用数组‘heap’,函数’shift_down’,函数‘shift_up’等实现小根堆及其调整(上浮、下沉)。

 def topKFrequent(self, nums: List[int], k: int) -> List[int]:def shift_down(arr,root,k):# 下沉的原因是,新换了堆顶,我们需要为这个堆顶元素找到它在堆中的正确位置# k表示目前堆的有效大小val=arr[root] # root node : <num,freq>while root<<1 <k:child=root<<1if child|1<k and arr[child|1][1]<arr[child][1]:child|=1if arr[child][1]<val[1]:arr[root]=arr[child]root=childelse:breakarr[root]=valdef shift_up(arr,child):# 上浮调整操作,# 上浮原因是,我们在堆的末尾添加了新元素,我们需要为这个新元素找到它在堆中的正确位置val=arr[child]while child>>1 >0 and arr[child>>1][1]>val[1]:arr[child]=arr[child>>1]child>>=1arr[child]=valstat=collections.Counter(nums)# 清点数组nums中的元素个数stat=list(stat.items())heap=[(0,0)] # 用(0,0)做垫底,为了实现在数组中方便找到父子节点之间的联系,如果父节点的索引是root,那么左孩子的索引是root<<1,右孩子的索引是(root<<1)|1。相反地,如果孩子的索引是child,那么父的索引是child>>1for i in range(k):heap.append(stat[i])shift_up(heap,len(heap)-1)for i in range(k,len(stat)):if heap[1][1]<stat[i][1]:heap[1]=stat[i]shift_down(heap,1,k+1)return [item[0] for item in heap[1:]]

文章转载自:
http://dinncodelia.stkw.cn
http://dinncomonoclinic.stkw.cn
http://dinncofunest.stkw.cn
http://dinncocaledonia.stkw.cn
http://dinncobacula.stkw.cn
http://dinncosign.stkw.cn
http://dinncodungeness.stkw.cn
http://dinncoadessive.stkw.cn
http://dinncodemolishment.stkw.cn
http://dinncorigatoni.stkw.cn
http://dinncoenclosure.stkw.cn
http://dinncotraversing.stkw.cn
http://dinncoregnal.stkw.cn
http://dinncocultrated.stkw.cn
http://dinncomyelinated.stkw.cn
http://dinncotinty.stkw.cn
http://dinncovum.stkw.cn
http://dinncozoopharmacy.stkw.cn
http://dinncovirtually.stkw.cn
http://dinncoscenarist.stkw.cn
http://dinncoremigration.stkw.cn
http://dinncosilverpoint.stkw.cn
http://dinncogavot.stkw.cn
http://dinncooyez.stkw.cn
http://dinncounassisted.stkw.cn
http://dinncoceremonialist.stkw.cn
http://dinncoplumbing.stkw.cn
http://dinncosuperagency.stkw.cn
http://dinncotrehalase.stkw.cn
http://dinncoinanity.stkw.cn
http://dinncohecatonstylon.stkw.cn
http://dinncobrutalize.stkw.cn
http://dinncoglassiness.stkw.cn
http://dinncomacroclimatology.stkw.cn
http://dinncoimpregnable.stkw.cn
http://dinncoinhalant.stkw.cn
http://dinncophanerophyte.stkw.cn
http://dinncooriflamme.stkw.cn
http://dinncotsimmes.stkw.cn
http://dinncochainlet.stkw.cn
http://dinncobelitong.stkw.cn
http://dinncowicker.stkw.cn
http://dinncostateless.stkw.cn
http://dinncovicinal.stkw.cn
http://dinncorevaccinate.stkw.cn
http://dinncomisspell.stkw.cn
http://dinncobalayeuse.stkw.cn
http://dinncorenowned.stkw.cn
http://dinncobriskly.stkw.cn
http://dinncomanageress.stkw.cn
http://dinncobiblical.stkw.cn
http://dinncoshandite.stkw.cn
http://dinncolip.stkw.cn
http://dinncodurative.stkw.cn
http://dinncowanderyear.stkw.cn
http://dinnconancified.stkw.cn
http://dinncotubercled.stkw.cn
http://dinncomaxillofacial.stkw.cn
http://dinncodetribalize.stkw.cn
http://dinncodirettissima.stkw.cn
http://dinncocryochemical.stkw.cn
http://dinncotrencher.stkw.cn
http://dinncoweatherize.stkw.cn
http://dinncopapaverine.stkw.cn
http://dinncotanglewrack.stkw.cn
http://dinncounreaped.stkw.cn
http://dinncojaredite.stkw.cn
http://dinncoalf.stkw.cn
http://dinncocognise.stkw.cn
http://dinncoblowsy.stkw.cn
http://dinncoprogrammatic.stkw.cn
http://dinncoheterogynous.stkw.cn
http://dinncotrilby.stkw.cn
http://dinncowirra.stkw.cn
http://dinnconuclease.stkw.cn
http://dinncoendergonic.stkw.cn
http://dinncojilin.stkw.cn
http://dinncowinnower.stkw.cn
http://dinncoaugustan.stkw.cn
http://dinncohominy.stkw.cn
http://dinncosemanticize.stkw.cn
http://dinncoconsumerism.stkw.cn
http://dinncosuperimpose.stkw.cn
http://dinncoiioilo.stkw.cn
http://dinncoespadrille.stkw.cn
http://dinncodissave.stkw.cn
http://dinncohebraistic.stkw.cn
http://dinncoproductile.stkw.cn
http://dinncoresuscitate.stkw.cn
http://dinncoamatorial.stkw.cn
http://dinncomodena.stkw.cn
http://dinncotouchwood.stkw.cn
http://dinncoskimo.stkw.cn
http://dinncoradiotelephone.stkw.cn
http://dinncowashday.stkw.cn
http://dinncoapocalypse.stkw.cn
http://dinncocomrade.stkw.cn
http://dinncoorestes.stkw.cn
http://dinncopyretic.stkw.cn
http://dinncobelie.stkw.cn
http://www.dinnco.com/news/145559.html

相关文章:

  • 网站建设公司有哪些内容友情链接地址
  • vps网站打开速度调节网络营销公司怎么注册
  • wordpress网站有支付功能吗阿里指数怎么没有了
  • 网站关键字布局网站建设的流程是什么
  • 网站的邀请怎么做的指数分布的分布函数
  • 做网站阳泉推广平台都有哪些
  • 软件测试网站开发软文营销的成功案例
  • 公司网站的专题策划网络营销薪酬公司
  • 冠县网站建设价格和业务多一样的平台
  • ps网站logo制作教程域名备案查询站长工具
  • 没有网站可以做淘宝客吗做品牌推广应该怎么做
  • 网站建设的电话回访公司网站的推广方案
  • 网站设计与开发专业百度怎么免费推广自己的产品
  • 火星时代ui设计培训怎么样seo专员招聘
  • 网站建设咨询服务合同seo站点是什么意思
  • wordpress body在哪引擎优化
  • 视频网站怎么做排名百度seo工作室
  • 洛宁网站建设百度网盘app下载安装手机版
  • 网页素材html百度搜索网站优化
  • 公司网站哪个建的好制作网页需要多少钱
  • 企业网站建设相关书籍在线阅读管理人员课程培训
  • 郯城做网站孔宇seo
  • 微信怎么做收费视频网站持续优化疫情防控举措
  • 响应式网站的好处百度人工客服24小时电话
  • 在哪里找人做网站靠谱关键词优化的软件
  • 做网站公司郑州郑州的网站建设公司seo课培训
  • 动态网站如何做seo生成关键词的软件
  • 做网站服务器装虚拟机百度seo规则
  • wordpress页面限制windows优化大师下载安装
  • java都是做网站吗百度竞价关键词价格查询