169. Majority Element

输入:一个数组
输出:数组中的众数
规则:众数就是出现次数大于数组长度一半的元素。
分析:暴力,计算每个元素出现次数。

	public int majorityElement(int[] nums) {for(int num : nums){int count = 0;for(int num2 : nums){if(num == num2) count++;}if(count>= nums.length/2) return num;}return -1;}

分析2:Boyer-Moore 投票算法。不得不说这个方法太巧妙了。就像是投赞成票和反对票。最后总会有一方赢了,因为题目说了众数总是存在的。

	public int majorityElement(int[] nums) {int candidate = nums[0];int count = 0;for(int num : nums){if(count==0){candidate = num;}count += (candidate == num?1:-1);}return candidate;}

分析3:Hash

	public int majorityElement(int[] nums) {Map<Integer,Integer> countMap = new HashMap<Integer,Integer>();for(int num : nums){if(countMap.get(num)==null){countMap.put(num,1);}else{countMap.put(num,1+countMap.get(num));}}for(Integer key : countMap.keySet()){if(countMap.get(key) > (nums.length/2)){return key;}}return 0;}

分析4:位运算。一个int有32位。对于众数来讲,同一个位置上1的出现次数肯定也是大于数组长度一半的。
例如:数组3 2 2,众数是2。他们的二进制分别为
11
10
10

bitCount[0]=1,bitCount[1]=3。因为bitCount[1]>3/2bitCount[1]>3/2bitCount[1]>3/2,所以最后根据bitCount得到 的值是2。

	public int majorityElement(int[] nums) {int[] bitCount = new int[32];for(int num : nums){for(int i=0;i<32;i++){if(((num>>i)&1) ==1){bitCount[i]++;}}}int t = nums.length/2;int r = 0;for(int i=0;i<32;i++){if(bitCount[i]>t){r += (1<<i);}}return r;}

分析5:分治算法。数组从low到middle可以找到一个众数leftValue,数组从middle+1到high也可以找到一个众数rightValue。如果二者相等,则众数等于leftValue(rightValue也对)。如果不同,则需要数一数哪个值的个数多,结果就是哪个。当数组长度为1的时候,众数就是自己。

	public int majorityElement(int[] nums) {return majorityElement(nums, 0, nums.length-1);}private int majorityElement(int[] nums, int low, int high){if(low == high) return nums[low];int middle = (low + high) >> 1;int leftValue = majorityElement(nums, low, middle);int rightValue = majorityElement(nums, middle+1, high);if(leftValue == rightValue) return leftValue;int leftCount = count(nums, low, middle, leftValue);int rightCount = count(nums, middle+1, high, rightValue);return leftCount > rightCount ? leftValue: rightValue;}private int count(int[] nums, int low, int high, int val){int c = 0;for(int i=low; i<=high; i++){if(nums[i] == val){c ++;}}return c;}

参考链接:力扣官网

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/424408.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

spring学习(38):注入set类型

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

spring学习(39):注入map类型

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

NanUI文档 - 如何实现C#与Javascript的相互通信

NanUI文档目录 NanUI简介开始使用NanUI打包并使用内嵌式的HTML/CSS/JS资源使用网页来设计整个窗口如何实现C#与Javascript的相互通信如何处理NanUI中的下载过程 - DonwloadHandler的使用(待更新。。。)如何处理NanUI中的弹窗过程 - LifeSpanHandler的使用(待更新。。。)如何控制…

23. Merge k Sorted Lists

输入&#xff1a;k个有序链表lists 输出&#xff1a;一个有序链表 规则&#xff1a;将这个k个有序链表合并成一个有序链表 分析&#xff1a;在链表中合并两个有序链表为一个有序链表是基本功。最开始的直觉是我们可以将lists[0]和lists[1]合并得到 result&#xff0c;result再和…

spring学习(40):注入数组类型

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

PS教程:如何拼图调色出高大上的作品

Hello&#xff0c;小伙伴们&#xff0c;是不是每每看到一些创意海报&#xff0c;就苦于自己不会做&#xff0c;其实合成并不难&#xff0c;掌握原理与技法&#xff0c;接下来就是拼图调色啦&#xff01;首先我们先来看下最终的效果图&#xff0c;铛铛铛&#xff01; 下面我们就…

32. Longest Valid Parentheses

输入&#xff1a;一个字符串s&#xff0c;只包含字符(和) 输出&#xff1a;一个整数&#xff0c;表示最长括号匹配子串的长度。 规则&#xff1a;括号匹配的字符是指每有一个‘(’字符就有对应的‘)’。 其他 情况都是无效的。 暴力算法分析&#xff1a;取字符串s的每一个子串&…

spring学习(41):属性注入

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

【JS】实时监控页面,input框数值自动求和

需求&#xff1a; 有一个页面需要将input框填入的各个费用自动相加&#xff0c;添加到“合计费用”里。 解决方案&#xff1a; 使用jquery的blur实践&#xff0c;每个费用的Input框检测到失去焦点时&#xff0c;将所有的input框数值相加求和&#xff0c;然后写入到“合计费用”…

spring学习(30):定义第一个bean

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

通过字符串引入模块下的属性

flask中可以配置一个字符串导入settings下的配置文件 app.config.from_object("settings.ProductionConfig")这里就是来讲解一下这个到底是怎么实现的。 例&#xff1a; 这是just_xxx.py里面的内容 # -*- coding: utf-8 -*- # Time : 2019/6/17 上午 11:50 # Auth…

392. Is Subsequence

写得好的解题思路链接&#xff1a;url1 url2(动态规划写的比较好) 输入&#xff1a;两个字符串s和t&#xff0c;t可能会很长 输出&#xff1a;s是否是t的子序列。 规则&#xff1a;字符串子序列的定义是&#xff1a;通过删除字符串t的部分字符但是不能改变字符相对位置&#x…

spring学习(42):属性注入注入数组和列表的说明

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

spring学习(43):属性注入中注入引用对象

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

Dijkstrala算法

文章出处&#xff1a;极客时间《数据结构和算法之美》-作者&#xff1a;王争。该系列文章是本人的学习笔记。 Dijkstrala算法查找图中从一个节点到另一个节点的最短路径&#xff0c;输出结果是最短路径以及长度。算法执行的前提条件是权重不能是负数。 起始顶点记为sid&#…

链表题目汇总(python3)

1、从头到尾打印链表 输入一个链表&#xff0c;按链表值从尾到头的顺序返回一个ArrayList。 # -*- coding:utf-8 -*- class ListNode:def __init__(self, x):self.val xself.next Noneclass Solution:def printListFromTailToHead(self, listNode):l []while listNode:l.appe…

spring学习(44):p名称空间注入

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

A*算法

文章出处&#xff1a;极客时间《数据结构和算法之美》-作者&#xff1a;王争。该系列文章是本人的学习笔记。 Dijkstra不能解决的问题 在Dijkstra类似BFS&#xff0c;从起始节点找到距离最短的节点&#xff0c;一层一层向外扩展&#xff0c;直到找到目标节点。 在有些时候这种…

导入安全证书到jdk

一&#xff1a;.导入证书 1.打开doc窗口&#xff0c;打开cmd&#xff0c;执行命令&#xff1a; keytool -import -file f:\ca.crt -keystore "%JAVA_HOME%\jre\lib\security\cacerts" -alias server-file 指定证书文件的位置 -alias 指定证书的别名 2.输入密钥库口令…

spring学习(45):util名称空间注入

目录结构 pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…