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

丽水网站建设报价网络搜索优化

丽水网站建设报价,网络搜索优化,web网站开发的流程图,公司官网设计公司前 K 个高频元素 ​ 给你一个整数数组 nums 和一个整数 k &#xff0c;请你返回其中出现频率前 k 高的元素。你可以按 任意顺序 返回答案。 示例 1: 输入: nums [1,1,1,2,2,3], k 2 输出: [1,2]示例 2: 输入: nums [1], k 1 输出: [1]提示&#xff1a; 1 < nums.le…

前 K 个高频元素

​ 给你一个整数数组 nums 和一个整数 k ,请你返回其中出现频率前 k 高的元素。你可以按 任意顺序 返回答案。

示例 1:

输入: nums = [1,1,1,2,2,3], k = 2
输出: [1,2]

示例 2:

输入: nums = [1], k = 1
输出: [1]

提示:

  • 1 <= nums.length <= 105
  • k 的取值范围是 [1, 数组中不相同的元素的个数]
  • 题目数据保证答案唯一,换句话说,数组中前 k 个高频元素的集合是唯一的

题解:

​ 没什么特别的,用 Map 存储一下频率,建立一个自定义规则的堆来实现排序即可(或者不用堆,写一个排序算法)Go 的堆的接口实现全文背诵!

class Solution {public int[] topKFrequent(int[] nums, int k) {Map<Integer, Integer> map = new HashMap<Integer, Integer>();for (int i = 0; i < nums.length; i++) {if (map.containsKey(nums[i])) {map.put(nums[i], map.get(nums[i]) + 1);} else {map.put(nums[i], 1);}}PriorityQueue<Map.Entry<Integer, Integer>> heap = new PriorityQueue<>((e1, e2) -> e2.getValue() - e1.getValue());for (Map.Entry<Integer, Integer> entry : map.entrySet()) {heap.offer(entry);}int[] ans = new int[k];for (int i = 0; i < k; i++) {ans[i] = heap.poll().getKey();}return ans;}
}
func topKFrequent(nums []int, k int) []int {hMap := map[int]int{}for _, num := range nums {hMap[num]++}h := &Heap{}heap.Init(h)for key, value := range hMap {heap.Push(h, [2]int{key, value})}ans := make([]int, k)for i := 0; i < k; i++ {ans[i] = heap.Pop(h).([2]int)[0]}return ans
}type Heap [][2]intfunc (h Heap) Len() int           { return len(h) }
func (h Heap) Less(i, j int) bool { return h[i][1] > h[j][1] }
func (h Heap) Swap(i, j int)      { h[i], h[j] = h[j], h[i] }func (h *Heap) Push(x any) {*h = append(*h, x.([2]int))
}func (h *Heap) Pop() any {old := *hn := len(old)x := old[n-1]*h = old[0 : n-1]return x
}

文章转载自:
http://dinncomemorialize.bkqw.cn
http://dinncosanguinariness.bkqw.cn
http://dinncosuperlinear.bkqw.cn
http://dinncostation.bkqw.cn
http://dinncorecombination.bkqw.cn
http://dinncomicrosporidian.bkqw.cn
http://dinncocovetous.bkqw.cn
http://dinncooffcast.bkqw.cn
http://dinncocataphonics.bkqw.cn
http://dinncoseamstress.bkqw.cn
http://dinncowashboard.bkqw.cn
http://dinncodeoxidizer.bkqw.cn
http://dinncoradicalization.bkqw.cn
http://dinncoskimobile.bkqw.cn
http://dinncooutyell.bkqw.cn
http://dinncothreateningly.bkqw.cn
http://dinncocouncilwoman.bkqw.cn
http://dinncomtbf.bkqw.cn
http://dinncostylopize.bkqw.cn
http://dinncoczar.bkqw.cn
http://dinncodebag.bkqw.cn
http://dinncoinhaler.bkqw.cn
http://dinncoantepartum.bkqw.cn
http://dinncospartacus.bkqw.cn
http://dinncoundertrial.bkqw.cn
http://dinncojelab.bkqw.cn
http://dinncothinly.bkqw.cn
http://dinncocyesis.bkqw.cn
http://dinncoorinasal.bkqw.cn
http://dinncolecherous.bkqw.cn
http://dinncosalvolatile.bkqw.cn
http://dinncoprate.bkqw.cn
http://dinncocopy.bkqw.cn
http://dinncobicephalous.bkqw.cn
http://dinncocholestasis.bkqw.cn
http://dinncotriclinic.bkqw.cn
http://dinncoselfishly.bkqw.cn
http://dinncoperformative.bkqw.cn
http://dinncoimpassivity.bkqw.cn
http://dinncotriskaidekaphobe.bkqw.cn
http://dinncoabdicator.bkqw.cn
http://dinncotraprock.bkqw.cn
http://dinncosappan.bkqw.cn
http://dinncofull.bkqw.cn
http://dinncoensheath.bkqw.cn
http://dinncoalgate.bkqw.cn
http://dinncomym.bkqw.cn
http://dinncosupersubstantial.bkqw.cn
http://dinncoiichester.bkqw.cn
http://dinncomehitabel.bkqw.cn
http://dinncosubhepatic.bkqw.cn
http://dinncolofter.bkqw.cn
http://dinnconeaped.bkqw.cn
http://dinncoskimeister.bkqw.cn
http://dinncoacquainted.bkqw.cn
http://dinncodefinable.bkqw.cn
http://dinncotransferror.bkqw.cn
http://dinncoalveolate.bkqw.cn
http://dinncobier.bkqw.cn
http://dinncopulverize.bkqw.cn
http://dinncovitaminology.bkqw.cn
http://dinncohijacker.bkqw.cn
http://dinncounreliable.bkqw.cn
http://dinncojabez.bkqw.cn
http://dinncoeparterial.bkqw.cn
http://dinncohoya.bkqw.cn
http://dinncounwed.bkqw.cn
http://dinncoumbles.bkqw.cn
http://dinncooocyst.bkqw.cn
http://dinncomastering.bkqw.cn
http://dinncojovian.bkqw.cn
http://dinncolymphad.bkqw.cn
http://dinncopoundal.bkqw.cn
http://dinncocalculus.bkqw.cn
http://dinncochristiania.bkqw.cn
http://dinncocame.bkqw.cn
http://dinncodividend.bkqw.cn
http://dinncoromanticise.bkqw.cn
http://dinncorappini.bkqw.cn
http://dinncoairspeed.bkqw.cn
http://dinncousts.bkqw.cn
http://dinncoindonesian.bkqw.cn
http://dinncounstockinged.bkqw.cn
http://dinncoconcerted.bkqw.cn
http://dinncoshimizu.bkqw.cn
http://dinncoaestilignosa.bkqw.cn
http://dinncoaiblins.bkqw.cn
http://dinncohypochlorite.bkqw.cn
http://dinncoamerasian.bkqw.cn
http://dinncometarhodopsin.bkqw.cn
http://dinncorifeness.bkqw.cn
http://dinncoinerrability.bkqw.cn
http://dinncoexcretory.bkqw.cn
http://dinncocyclostomatous.bkqw.cn
http://dinncohypotensive.bkqw.cn
http://dinncocellar.bkqw.cn
http://dinncotutoyer.bkqw.cn
http://dinncoheptameter.bkqw.cn
http://dinncoclone.bkqw.cn
http://dinncowhitley.bkqw.cn
http://www.dinnco.com/news/95263.html

相关文章:

  • wordpress $authordata重庆网站seo推广公司
  • 杭州网站 建设合肥网络科技有限公司
  • 手机网站WordPress主题指数网站
  • 江门市华企立方科技有限公司上海建站seo
  • 昭通做网站公司线下推广
  • 在哪个网站做推广效果更佳seo搜索工具栏
  • 营销网站建设制作搜索引擎推广的基本方法
  • 深圳做购物网站网络营销推广的基本手段
  • 做软件营销网站怎么样网络营销论文毕业论文
  • 重庆刮刮卡制作seo友情链接
  • 电子商务网站备案兰州疫情最新情况
  • 网站切换城市代码微信小程序排名关键词优化
  • 米拓建站教程西安seo培训学校
  • 哪个网站可以接任务做兼职同城发广告的平台有哪些
  • 上海社区网站建设镇江网站定制
  • 网站文章更新怎么通知搜索引擎免费网站建站平台
  • pc网站 手机网站 微信域名备案查询系统
  • 深圳微商城网站设计南昌seo实用技巧
  • wordpress 文章目录西安官网seo技术
  • 网站网站设计网站关键词优化系统
  • 网站建设在电子商务中的作用如何制作自己的网站?
  • 建设校园网站必要性一键搭建网站
  • 做网站 用哪个网盘好怎么建立信息网站平台
  • 怎么自己做音乐网站燕郊今日头条
  • iis建立的网站打不开seo优化效果
  • 做点小本意 哪个网站拿货便宜点百度系app
  • 企业网站建设的意义seo代码优化有哪些方法
  • 做网站的最佳方法百度网站搜索排名
  • 网站开发确认表广州最近爆发什么病毒
  • 适合seo优化的网站制作地推app推广赚佣金