面试题 17.10:主要元素
This commit is contained in:
parent
03f4e33ca0
commit
6df1eb3639
@ -0,0 +1,62 @@
|
||||
//数组中占比超过一半的元素称之为主要元素。给你一个 整数 数组,找出其中的主要元素。若没有,返回 -1 。请设计时间复杂度为 O(N) 、空间复杂度为 O(1
|
||||
//) 的解决方案。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入:[1,2,5,9,5,9,5,5,5]
|
||||
//输出:5
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入:[3,2]
|
||||
//输出:-1
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入:[2,2,1,1,1,2,2]
|
||||
//输出:2
|
||||
// Related Topics 数组 计数
|
||||
// 👍 134 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
//面试题 17.10:主要元素
|
||||
public class FindMajorityElementLcci {
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new FindMajorityElementLcci().new Solution();
|
||||
}
|
||||
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public int majorityElement(int[] nums) {
|
||||
int nu = -1;
|
||||
int count = 0;
|
||||
for (int num : nums) {
|
||||
if (count == 0) {
|
||||
nu = num;
|
||||
}
|
||||
if (nu == num) {
|
||||
count++;
|
||||
} else {
|
||||
count--;
|
||||
}
|
||||
}
|
||||
count = 0;
|
||||
for (int num : nums) {
|
||||
if (nu == num) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return count * 2 > nums.length ? nu : -1;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
22
src/main/java/leetcode/editor/cn/FindMajorityElementLcci.md
Normal file
22
src/main/java/leetcode/editor/cn/FindMajorityElementLcci.md
Normal file
@ -0,0 +1,22 @@
|
||||
<p>数组中占比超过一半的元素称之为主要元素。给你一个<strong> 整数 </strong>数组,找出其中的主要元素。若没有,返回 <code>-1</code> 。请设计时间复杂度为 <code>O(N)</code> 、空间复杂度为 <code>O(1)</code> 的解决方案。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>[1,2,5,9,5,9,5,5,5]
|
||||
<strong>输出:</strong>5</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>[3,2]
|
||||
<strong>输出:</strong>-1</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>[2,2,1,1,1,2,2]
|
||||
<strong>输出:</strong>2</pre>
|
||||
<div><div>Related Topics</div><div><li>数组</li><li>计数</li></div></div>\n<div><li>👍 134</li><li>👎 0</li></div>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user