[leetcode-594-Longest Harmonious Subsequence]
Posted hellowOOOrld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode-594-Longest Harmonious Subsequence]相关的知识,希望对你有一定的参考价值。
We define a harmonious array is an array where the difference between its maximum value and its minimum value is exactly 1.
Now, given an integer array, you need to find the length of its longest harmonious subsequence among all its possible subsequences.
Example 1:
Input: [1,3,2,2,5,2,3,7]
Output: 5
Explanation: The longest harmonious subsequence is [3,2,2,2,3].
思路:
定义一个map,记录数组中数字出现的次数,连续两个数字出现次数的和即为harmonious subsequence。
nt findLHS(vector<int>& nums) { if(nums.size()<1)return 0; map<int,int>table; sort(nums.begin(),nums.end()); for(int i=0;i<nums.size();i++) { table[nums[i]]++; } map<int ,int>::iterator it = table.begin(); map<int ,int>::iterator temp = it; temp++; int ret =0; for(;temp!=table.end();it++,temp++) { if(table.count(it->first+1)) { ret = max(ret,it->second+temp->second); } } return ret; }
以上是关于[leetcode-594-Longest Harmonious Subsequence]的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 594. Longest Harmonious Subsequence
[LeetCode] 594. Longest Harmonious Subsequence