Practices7|128. 最长连续序列、49. 字母异位词分组(hash)

128. 最长连续序列

1.题目:

给定一个未排序的整数数组 nums ,找出数字连续的最长序列(不要求序列元素在原数组中连续)的长度。

请你设计并实现时间复杂度为 O(n)的算法解决此问题。

示例 1:

输入:nums = [100,4,200,1,3,2]
输出:4
解释:最长数字连续序列是 [1, 2, 3, 4]。它的长度为 4。

示例 2:

复制代码
输入:nums = [0,3,7,2,5,8,4,6,0,1]
输出:9

提示:

  • 0 <= nums.length <= 105
  • -109 <= nums[i] <= 109

2.思路:

可能会有重复元素,用set去重。

要求O(n)复杂度``,每个元素遍历使用一遍。判断连续:前一个不存在的元素作为起始元素,然后看是否存在下一个元素,存在更新最长连续的长度。

3.代码:

java 复制代码
 public int longestConsecutive(int[] nums) {
        int reslength=0;
        Set<Integer> set=new HashSet<>();
        for(int num:nums){
            set.add(num);
        }
        for(int num:set){
            if(!set.contains(num-1)){
                int currnum=num;
                int currlength=1;
                while(set.contains(currnum+1)){
                    currnum=currnum+1;
                    currlength=currlength+1;
                }
                reslength=Math.max(currlength,reslength);
            }
        }
        return reslength;
    }

49. 字母异位词分组

1.题目:

给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。

字母异位词 是由重新排列源单词的所有字母得到的一个新单词。

示例 1:

输入: strs = ["eat", "tea", "tan", "ate", "nat", "bat"]
输出: [["bat"],["nat","tan"],["ate","eat","tea"]]

示例 2:

输入: strs = [""]
输出: [[""]]

示例 3:

输入: strs = ["a"]
输出: [["a"]]

2.思路:

字母 统计频率 hash

两种方法:排序 和 计数

用hashmap键值对来做,键:排序之后的字符 或者计数后的字符串 (字母异位词键一定是相同的) 值:也是返回的字母异位词。

3.代码:

java 复制代码
class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {
        //HashMap 计数
        Map<String,List<String>> map=new HashMap<>();
        for(String str:strs){
            int[] count=new int[26];
            int length=str.length();
            for(int i=0;i<length;i++){
                count[str.charAt(i)-'a']++;
            }
            StringBuilder sb=new StringBuilder();
            for(int i=0;i<26;i++){
                if(count[i]>0){
                    sb.append((char)('a'+i));
                    sb.append(count[i]);
                }
            }
            String key=new String(sb);
            List<String> values=map.getOrDefault(key,new ArrayList<String>());
            values.add(str);
            map.put(key,values);
        }
        return new ArrayList<List<String>>(map.values());  
    }
}
java 复制代码
class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {
        //HashMap 排序
        Map<String,List<String>> map=new HashMap<>();
        for(String str:strs){
            char[] array=str.toCharArray();
            Arrays.sort(array);
            String key=new String(array);
            List<String> values=map.getOrDefault(key,new ArrayList<String>());
            values.add(str);
            map.put(key,values);
        }
        return new ArrayList<List<String>>(map.values());
    }
}
相关推荐
林开落L5 分钟前
前缀和算法习题篇(上)
c++·算法·leetcode
远望清一色6 分钟前
基于MATLAB边缘检测博文
开发语言·算法·matlab
tyler_download8 分钟前
手撸 chatgpt 大模型:简述 LLM 的架构,算法和训练流程
算法·chatgpt
SoraLuna28 分钟前
「Mac玩转仓颉内测版7」入门篇7 - Cangjie控制结构(下)
算法·macos·动态规划·cangjie
我狠狠地刷刷刷刷刷31 分钟前
中文分词模拟器
开发语言·python·算法
鸽鸽程序猿32 分钟前
【算法】【优选算法】前缀和(上)
java·算法·前缀和
九圣残炎38 分钟前
【从零开始的LeetCode-算法】2559. 统计范围内的元音字符串数
java·算法·leetcode
YSRM1 小时前
Experimental Analysis of Dedicated GPU in Virtual Framework using vGPU 论文分析
算法·gpu算力·vgpu·pci直通
韭菜盖饭1 小时前
LeetCode每日一题3261---统计满足 K 约束的子字符串数量 II
数据结构·算法·leetcode
xxxmmc1 小时前
Leetcode 75 Sort colors
leetcode·三指针移动问题