zoukankan      html  css  js  c++  java
  • LeetCode Degree of an Array

    原题链接在这里:https://leetcode.com/problems/degree-of-an-array/description/

    题目:

    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: [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: [1,2,2,3,1,4,2]
    Output: 6

    Note:

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

    题解:

    找出最大的frequency, 并标注对应的element出现过的左右index位置.

    Time Complexity: O(n). n = nums.length.

    Space: O(n).

    AC Java:

     1 class Solution {
     2     public int findShortestSubArray(int[] nums) {
     3         HashMap<Integer, Integer> count = new HashMap<Integer, Integer>();
     4         HashMap<Integer, Integer> leftInd = new HashMap<Integer, Integer>();
     5         HashMap<Integer, Integer> rightInd = new HashMap<Integer, Integer>();
     6         int degree = 0;
     7         
     8         for(int i = 0; i<nums.length; i++){
     9             count.put(nums[i], count.getOrDefault(nums[i], 0)+1);
    10             degree = Math.max(degree, count.get(nums[i]));
    11             
    12             if(leftInd.get(nums[i]) == null){
    13                 leftInd.put(nums[i], i);
    14             }
    15             rightInd.put(nums[i], i);
    16         }
    17         
    18         int res = Integer.MAX_VALUE;
    19         for(int i = 0; i<nums.length; i++){
    20             if(count.get(nums[i]) == degree){
    21                 res = Math.min(res, rightInd.get(nums[i]) - leftInd.get(nums[i]) + 1);
    22             }
    23         }
    24         
    25         return res;
    26     }
    27 }
  • 相关阅读:
    删除svn版本信息
    ArcGIS Server中创建ao对象的CLSID如何获得
    操作系统引导
    有关IHttpModule与页面的执行顺序
    使用python查询中文汉字的Unicode
    VIM 入门(转载)
    Visual Studio 2010 添加vim支持
    win7 安装arcgis后出现问题解决方案
    C++中动态链接库的一些概念及入门(2)
    VS2010 MSDN
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/7749867.html
Copyright © 2011-2022 走看看