229. 多数元素 IIhttps://leetcode.cn/problems/majority-element-ii/
难度中等587
给定一个大小为 n 的整数数组,找出其中所有出现超过 ⌊ n/3 ⌋
次的元素。
示例 1:
输入:nums = [3,2,3] 输出:[3]
示例 2:
输入:nums = [1] 输出:[1]
示例 3:
输入:nums = [1,2] 输出:[1,2]
提示:
1 <= nums.length <= 5 * 104
-109 <= nums[i] <= 109
进阶:尝试设计时间复杂度为 O(n)、空间复杂度为 O(1)的算法解决此问题。
class Solution {
public List<Integer> majorityElement(int[] nums) {
//使用HashMap
int n = nums.length/3;
HashSet<Integer> set = new HashSet<Integer>();
HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
for(int num:nums)
{
if(!map.containsKey(num)) map.put(num,1);
else map.replace(num,map.get(num)+1);
if(map.get(num) > n) set.add(num);
}
List<Integer> ans = new ArrayList<Integer>(set);
return ans;
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/69089.html