leetcode 697.Degree of an Array
Posted newnoobbird
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 697.Degree of an Array相关的知识,希望对你有一定的参考价值。
题意是指在数组中取得出现频率最高的数,然后计算数之间的间隔的。
那么这里可以简单的使用map映射关系来求解的,并且统计出现的次数以及对应的位置关系的。
class Solution { public: int findShortestSubArray(vector<int>& nums) { map<int,int> m; map<int,pair<int,int>> pos; int degree=0,res=INT_MAX; for(int i=0;i<nums.size();i++){ m[nums[i]]++; if(m[nums[i]]==1){ pos[nums[i]]={i,i}; }else{ pos[nums[i]].second=i; } degree=max(degree, m[nums[i]]); } for(auto a:m){ if(degree==a.second){ res=min(res,pos[a.first].second-pos[a.first].first+1); } } return res; } };
以上是关于leetcode 697.Degree of an Array的主要内容,如果未能解决你的问题,请参考以下文章
[leetcode]Array-697. Degree of an Array
leetcode 697.Degree of an Array