LeetCode刷题:多数元素
程序员文章站
2022-03-15 20:33:02
...
题目
给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
示例 1:
输入: [3,2,3]
输出: 3
示例 2:
输入: [2,2,1,1,1,2,2]
输出: 2
题解
思路:
把不同的数字看作敌人,打一架则失去一个体力点。
时间和内存消耗为:
代码为:
class Solution {
public int majorityElement(int[] nums) {
int ans=nums[0];
int rec=1;
for(int i=1;i<nums.length;i++){
if(ans==nums[i]){
rec++;
}else{
rec--;
if(rec==0){
ans=nums[i+1];
}
}
}
return ans;
}
}
上一篇: LeetCode算法题169:多数元素