字母异位词分组题解Java

其实所谓异位就是指包含的字母是一样的只是位置不同。所以只要把其排序,若是字母异位词应当相等。

class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {
        String[] tmp = new String[strs.length];
        int index = 0;
        for(String e : strs){
            char[] a = e.toCharArray();
            Arrays.sort(a);
            tmp[index++] = String.valueOf(a);
        }
        List<List<String>> ans = new LinkedList<>();
        boolean[] vis = new boolean[strs.length];
        for(int i = 0 ;i<tmp.length-1;i++){
            List<String> t = new LinkedList<>();
            if(!vis[i]){
                t.add(strs[i]);
            }else{
                continue;
            }
            for(int j = i+1;j<tmp.length;j++){
                if(tmp[i].equals(tmp[j])){
                    t.add(strs[j]);
                    vis[j] = true;
                }
            }
            ans.add(t);
        }
    if(!vis[strs.length-1]){
        List<String> t = new LinkedList<>();
        t.add(strs[strs.length-1]);
        ans.add(t);
    }
    return ans;
    }
}

这样子效率是非常慢的用了两层循环。

我们可以换种想法用HashMap。创建映射Key 为排好序的字符串 (Map为一种映射关系 有Key 和value 即值值键对 一个Key 对应一个value Key 不可重复)

class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {

        List<List<String>> res = new ArrayList<>();

        // 记录 (排序后的字符串,list编号)
        Map<String, Integer> map = new HashMap<>();
        int t = 0;  对应Map长度
        for (String str : strs) {
            String s = sort(str);
            Integer index = map.get(s);
            if (index == null) {  //如果不存在对应的Key则新建并加入
                List<String> list = new ArrayList<>();
                list.add(str);
                res.add(list);
                map.put(s,t++ );
            } else {若存在则对应的列表加入
                res.get(index).add(str);
            }
        }

        return res;
    }

    public String sort(String s) {
        char[] c = s.toCharArray();
        Arrays.sort(c);
        return new String(c);
    }
}

原文地址:https://www.cnblogs.com/vibe/p/12247285.html

时间: 2024-10-04 00:38:42

字母异位词分组题解Java的相关文章

LeetCode 49. 字母异位词分组(Group Anagrams)

49. 字母异位词分组 49. Group Anagrams 题目描述 给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ??["ate","eat","tea"], ??[&

[leetcode] 49. 字母异位词分组

49. 字母异位词分组 桶排分类即可 class Solution { public List<List<String>> groupAnagrams(String[] strs) { Map<String, List<String>> map = new HashMap<>(); for (String str : strs) { map.computeIfAbsent(fun(str), k -> new ArrayList<&g

字母异位词分组

给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"], ["

【中级算法】49. 字母异位词分组

题目: 给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"], [&q

LeetCode 第49题 字母异位词分组

(一) 题目描述 给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"]

【leetcode-49】字母异位词分组

给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"],输出:[ ["ate","eat","tea"], ["nat","tan"], ["ba

LeetCode——字母异位词分组

Q:给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"], [&quo

Java实现 LeetCode 242 有效的字母异位词

有效的字母异位词 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词. 示例 1: 输入: s = "anagram", t = "nagaram" 输出: true 示例 2: 输入: s = "rat", t = "car" 输出: false 说明: 你可以假设字符串只包含小写字母. 进阶: 如果输入字符串包含 unicode 字符怎么办?亨达全球HantecGlobal代理申请你能否调整你的

LeetCode 242. 有效的字母异位词(Valid Anagram)

242. 有效的字母异位词 LeetCode242. Valid Anagram 题目描述 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的一个字母异位词. 示例 1: 输入: s = "anagram", t = "nagaram" 输出: true 示例 2: 输入: s = "rat", t = "car" 输出: false 说明: 你可以假设字符串只包含小写字母. 进阶: 如果输入字符串包含 un