169:多数元素

This commit is contained in:
轩辕龙儿 2022-03-19 21:31:01 +08:00
parent 364ce9a235
commit 3ae9d244ca
2 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,62 @@
//给定一个大小为 n 的数组找到其中的多数元素多数元素是指在数组中出现次数 大于 n/2 的元素
//
// 你可以假设数组是非空的并且给定的数组总是存在多数元素
//
//
//
// 示例 1
//
//
//输入[3,2,3]
//输出3
//
// 示例 2
//
//
//输入[2,2,1,1,1,2,2]
//输出2
//
//
//
//
// 进阶
//
//
// 尝试设计时间复杂度为 O(n)空间复杂度为 O(1) 的算法解决此问题
//
// Related Topics 数组 哈希表 分治 计数 排序 👍 1364 👎 0
package leetcode.editor.cn;
import java.util.Arrays;
//169:多数元素
public class MajorityElement {
public static void main(String[] args) {
Solution solution = new MajorityElement().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int majorityElement(int[] nums) {
int size = nums.length;
Arrays.sort(nums);
int count = 1;
for (int i = 1; i < size; i++) {
if (nums[i] == nums[i - 1]) {
count++;
} else {
if (count > size / 2) {
return nums[i - 1];
} else {
count = 1;
}
}
}
return nums[nums.length-1];
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,27 @@
<p>给定一个大小为 <em>n </em>的数组,找到其中的多数元素。多数元素是指在数组中出现次数 <strong>大于</strong> <code>⌊ n/2 ⌋</code> 的元素。</p>
<p>你可以假设数组是非空的,并且给定的数组总是存在多数元素。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>[3,2,3]
<strong>输出:</strong>3</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>[2,2,1,1,1,2,2]
<strong>输出:</strong>2
</pre>
<p> </p>
<p><strong>进阶:</strong></p>
<ul>
<li>尝试设计时间复杂度为 O(n)、空间复杂度为 O(1) 的算法解决此问题。</li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>哈希表</li><li>分治</li><li>计数</li><li>排序</li></div></div><br><div><li>👍 1364</li><li>👎 0</li></div>