LeetCode-697. Degree of an Array [C++][Java]

该博客介绍了LeetCode的一道题目,目标是找到数组中具有相同最大频率元素的最短连续子数组。文章提供了C++和Java两种语言的解决方案,通过使用哈希映射存储元素及其出现位置,然后遍历找出具有最大频率的子数组长度。

LeetCode-697. Degree of an Arrayicon-default.png?t=M3K6https://leetcode.com/problems/degree-of-an-array/

Given a non-empty array of non-negative integers nums, the degree of this array is defined as the maximum frequency of any one of its elements.

Your task is to find the smallest possible length of a (contiguous) subarray of nums, that has the same degree as nums.

Example 1:

Input: nums = [1,2,2,3,1]
Output: 2
Explanation: 
The input array has a degree of 2 because both elements 1 and 2 appear twice.
Of the subarrays that have the same degree:
[1, 2, 2, 3, 1], [1, 2, 2, 3], [2, 2, 3, 1], [1, 2, 2], [2, 2, 3], [2, 2]
The shortest length is 2. So return 2.

Example 2:

Input: nums = [1,2,2,3,1,4,2]
Output: 6
Explanation: 
The degree is 3 because the element 2 is repeated 3 times.
So [2,2,3,1,4,2] is the shortest subarray, therefore returning 6.

Constraints:

  • nums.length will be between 1 and 50,000.
  • nums[i] will be an integer between 0 and 49,999.

【C++】

class Solution {
public:
    int findShortestSubArray(vector<int>& nums) {
        unordered_map<int, vector<int>> hash;
        for (int i = 0; i < nums.size(); i++) hash[nums[i]].push_back(i);
        int deg = 0;
        for (auto it : hash) {if (it.second.size() > deg) {deg = it.second.size();}}
        int ans = nums.size();
        for (auto it : hash)  {
            if (it.second.size() == deg) {
                int tmpLen = it.second.back() - it.second[0] + 1;
                if (tmpLen < ans) {ans = tmpLen;}
            }
        }
        return ans;
    }
};

【Java】

class Solution {
    public int findShortestSubArray(int[] nums) {
        Map<Integer, List<Integer>> hash = new HashMap<>();
        for (int i = 0; i < nums.length; i++) {
            hash.putIfAbsent(nums[i], new ArrayList<>());
            hash.get(nums[i]).add(i);
        }
        int deg = 0;
        for (Map.Entry<Integer, List<Integer>> it : hash.entrySet()) {
            int vs = it.getValue().size();
            if (vs > deg) {deg = vs;}
        }
        int ans = nums.length;
        for (Map.Entry<Integer, List<Integer>> it : hash.entrySet())  {
            int vs = it.getValue().size();
            if (vs == deg) {
                List<Integer> tmp = it.getValue();
                int tmpLen = tmp.get(vs-1) - tmp.get(0) + 1;
                if (tmpLen < ans) {ans = tmpLen;}
            }
        }
        return ans;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

贫道绝缘子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值