和谐数组是指一个数组里元素的最大值和最小值之间的差别正好是1。

现在,给定一个整数数组,你需要在所有可能的子序列中找到最长的和谐子序列的长度。

示例 1:

输入: [1,3,2,2,5,2,3,7]
输出: 5
原因: 最长的和谐数组是:[3,2,2,2,3].

说明: 输入的数组长度最大不超过20,000.

分析:
利用 HashMap< key,value> 的特性,key 存出现的数,value 存出现的次数,和 HashMap 对 key 排序存放
先遍历一次,得到数组的数出现次数,再考虑遍历 HashMap的 key 集合,如果比当前 key 大一的值也存在 HashMap 中,则说明它们”和谐数组”,更新最大值

class Solution {
    public int findLHS(int[] nums) {
        Map<Integer, Integer> map = new HashMap<>();
        for (int i : nums) {
            if (!map.containsKey(i))
                map.put(i, 1);
            else
                map.put(i, map.get(i) + 1);
        }
        int max = 0;
        for (int i : map.keySet()) {
            if (map.containsKey(i + 1))
                max = Integer.max(map.get(i) + map.get(i + 1), max);
        }
        return max;
    }
}