Leetcode 229. Majority Element II (Medium) (cpp)

287 篇文章 0 订阅
96 篇文章 0 订阅
本文介绍了一个解决LeetCode 229题多数元素 II 的算法,该题要求找出数组中出现次数超过 n/3 的所有元素,并且要求算法的时间复杂度为 O(n),空间复杂度为 O(1)。通过使用Boyer-Moore投票算法的扩展版本,文章详细解释了如何有效地找到这些多数元素。
摘要由CSDN通过智能技术生成

Leetcode 229. Majority Element II (Medium) (cpp)

Tag: Array

Difficulty: Medium


/*

229. Majority Element II (Medium)

Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1) space.

Hint:

How many majority elements could it possibly have?
Do you have a better hint? Suggest it!

*/
class Solution {
public:
	vector<int> majorityElement(vector<int>& nums) {
		vector<int> res;
		int res1, res2, num1 = 0, num2 = 0;
		for (int i = 0; i < nums.size(); i++) {
			if (res1 == nums[i]) {
                num1++;
            } else if (res2 == nums[i]) {
                num2++;
            } else if (num1 == 0) {
				res1 = nums[i];
				num1++;
			} else if (num2 == 0) {
				res2 = nums[i];
				num2++;
			} else {
				num1--;
				num2--;
			}
		}
		num1 = 0;
		num2 = 0;
		for (int i = 0; i < nums.size(); i++) {
			if (res1 == nums[i]) {
                num1++;
            } else if (res2 == nums[i]) {
                num2++;
            }
		}
		if (num1 > nums.size() / 3) res.push_back(res1);  
		if (num2 > nums.size() / 3) res.push_back(res2);
		return res;
	}
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值