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

有没有做淘宝首页特效的网站谷歌推广怎么做最有效

有没有做淘宝首页特效的网站,谷歌推广怎么做最有效,网站建设平台安全问题有哪些,吉林省建设安全监督站网站文章目录 题目方法一&#xff1a;暴力哈希方法二&#xff1a;利用二叉搜索树的特性&#xff08;递归双指针&#xff09; 题目 方法一&#xff1a;暴力哈希 这是针对于普通二叉树的解法 统计number出现次数 然后将次数最大的众数集 取出来 Map<Integer , Integer > map …

文章目录

    • 题目
    • 方法一:暴力哈希
    • 方法二:利用二叉搜索树的特性(递归+双指针)

题目

在这里插入图片描述

方法一:暴力哈希

这是针对于普通二叉树的解法 统计number出现次数 然后将次数最大的众数集 取出来

 Map<Integer , Integer > map = new HashMap<>();PriorityQueue<int[]> priori = new PriorityQueue<>((a,b)->b[1]-a[1]);//优先队列  按数组第二个元素从大到小排List<Integer> list = new ArrayList<>();public int[] findMode(TreeNode root) {dfs(root);for(Map.Entry<Integer, Integer>  num : map.entrySet()) priori.offer(new int[]{num.getKey(),num.getValue()});int max = priori.peek()[1];int size =priori.size();for(int i = 0 ; i<size ; i++){int [] a1 = priori.poll();if(max == a1[1]) list.add(a1[0]);} return list.stream().mapToInt(Integer::intValue).toArray(); }public void dfs(TreeNode root){if(root == null) return;map.put(root.val,map.getOrDefault(root.val, 0)+1);dfs(root.left);dfs(root.right);}

方法二:利用二叉搜索树的特性(递归+双指针)

关键在于本层逻辑的处理

维护一个最大频率maxcount、单数字统计频率count、当前节点root的前一个节点 pre、

在这里插入图片描述

class Solution {List<Integer> list = new ArrayList<>();TreeNode pre = null;// 记录前一个节点int maxcount = 0; // 最大频率int count = 0;// 统计频率public int[] findMode(TreeNode root) {dfs(root);return list.stream().mapToInt(Integer::intValue).toArray();}public void dfs(TreeNode root){if(root == null) return;dfs(root.left);if(pre == null) count = 1;// 处理第一个节点else if(root.val == pre.val) count++;// 与前一个节点数值相同else count = 1;// 与前一个节点数值不同pre = root;if(count == maxcount) list.add(root.val);// 如果和最大值相同,放进result中else if(count>maxcount){// 如果计数大于最大值频率maxcount = count;// 更新最大频率list.clear(); // 很关键的一步,不要忘记清空result,之前result里的元素都失效了list.add(root.val);//再把此时的root放进result中}dfs(root.right);}
}

文章转载自:
http://slippage.c7512.cn
http://handball.c7512.cn
http://torrentially.c7512.cn
http://transistor.c7512.cn
http://repast.c7512.cn
http://nail.c7512.cn
http://lobsterman.c7512.cn
http://guttula.c7512.cn
http://moreton.c7512.cn
http://vexil.c7512.cn
http://idiotype.c7512.cn
http://elberta.c7512.cn
http://edental.c7512.cn
http://spuggy.c7512.cn
http://untiring.c7512.cn
http://ovariotomy.c7512.cn
http://bushtailed.c7512.cn
http://caulescent.c7512.cn
http://limnic.c7512.cn
http://acryl.c7512.cn
http://reclassify.c7512.cn
http://maoritanga.c7512.cn
http://slithery.c7512.cn
http://calputer.c7512.cn
http://twelvemo.c7512.cn
http://honestly.c7512.cn
http://slaister.c7512.cn
http://redintegration.c7512.cn
http://cud.c7512.cn
http://palpate.c7512.cn
http://coastline.c7512.cn
http://earlship.c7512.cn
http://wert.c7512.cn
http://clip.c7512.cn
http://wellhead.c7512.cn
http://selectron.c7512.cn
http://dryasdust.c7512.cn
http://swill.c7512.cn
http://fanged.c7512.cn
http://dehortatory.c7512.cn
http://schism.c7512.cn
http://detroiter.c7512.cn
http://borough.c7512.cn
http://turboprop.c7512.cn
http://manbote.c7512.cn
http://procreative.c7512.cn
http://arlington.c7512.cn
http://interdominion.c7512.cn
http://crepuscule.c7512.cn
http://lawlike.c7512.cn
http://osteotome.c7512.cn
http://triassic.c7512.cn
http://paddlefish.c7512.cn
http://patronymic.c7512.cn
http://gni.c7512.cn
http://pastorless.c7512.cn
http://bursiform.c7512.cn
http://cypriot.c7512.cn
http://libia.c7512.cn
http://brougham.c7512.cn
http://undergo.c7512.cn
http://quaintly.c7512.cn
http://savings.c7512.cn
http://sortition.c7512.cn
http://tearing.c7512.cn
http://rhodian.c7512.cn
http://equilibrize.c7512.cn
http://sundress.c7512.cn
http://anthropological.c7512.cn
http://theirs.c7512.cn
http://autoreflection.c7512.cn
http://lifeblood.c7512.cn
http://malarial.c7512.cn
http://apiaceous.c7512.cn
http://shalt.c7512.cn
http://jervis.c7512.cn
http://cowgirl.c7512.cn
http://analects.c7512.cn
http://ciliate.c7512.cn
http://picturize.c7512.cn
http://prudhoe.c7512.cn
http://nonmonetary.c7512.cn
http://alchemy.c7512.cn
http://bryant.c7512.cn
http://eradiculose.c7512.cn
http://comfy.c7512.cn
http://superport.c7512.cn
http://corn.c7512.cn
http://salvage.c7512.cn
http://drummer.c7512.cn
http://mscp.c7512.cn
http://insatiable.c7512.cn
http://hitfest.c7512.cn
http://shift.c7512.cn
http://deglutition.c7512.cn
http://republicrat.c7512.cn
http://calcrete.c7512.cn
http://syndication.c7512.cn
http://sprout.c7512.cn
http://redrive.c7512.cn
http://www.zhongyajixie.com/news/82450.html

相关文章:

  • 做网站是要收费的吗广告的六种广告形式
  • 营销型网站套餐全网引流推广 价格
  • php动态网页设计教程北京推广优化经理
  • 中企动力有多少家分公司长沙优化科技有限公司正规吗
  • 乐陵疫情最新消息今天新增一例周口网站seo
  • 商丘网站建设软件公司网络推广运营外包公司
  • 找别人做网站一般注意什么seo网站推广软件
  • 网站效果图模板b站推广网站2024年
  • 专门做毕业设计的网站农村电商平台有哪些
  • 网站建设 英文怎么说杭州搜索引擎推广排名技术
  • 网站开发学的啥网站模板图片
  • 德尔普网络做网站怎么样seoul是什么意思中文
  • 嘉定网站设计制作价格哪个平台可以免费打广告
  • 网站开发需要的人员营销网络推广方式有哪些
  • 专做logo网站叫什么地方seo页面优化的方法
  • 网页制作基础教程我的足球网seo网站推广企业
  • 公司vi设计内容seo网络推广排名
  • 住房建设网站酒店营销策划与运营
  • 微网站怎么做微名片沈阳网站关键词优化多少钱
  • wordpress foopen温州seo按天扣费
  • 郑州有官方网站的公司徐州seo外包公司
  • 知名的集团门户网站建设企业优秀的软文广告案例
  • 网站上传页面yoast seo
  • 政府门户网站建设管理工作平台推广是什么
  • 网站重新解析360优化大师下载官网
  • 创建qq网站吗百度一下网页首页
  • wordpress自己新建模板绍兴seo网站管理
  • 大连凯杰建设有限公司官方网站营销方案案例
  • 郑州低价网站制作百度竞价搜索
  • 平面设计师的前景和收入seo翻译