Java--LeetCode--820. 单词的压缩编码

给定一个单词列表,我们将这个列表编码成一个索引字符串 S 与一个索引列表 A。

例如,如果这个列表是 [“time”, “me”, “bell”],我们就可以将其表示为 S = “time#bell#” 和 indexes = [0, 2, 5]。

对于每一个索引,我们可以通过从字符串 S 中索引的位置开始读取字符串,直到 “#” 结束,来恢复我们之前的单词列表。

那么成功对给定单词列表进行编码的最小字符串长度是多少呢?

示例:
输入: words = [“time”, “me”, “bell”]
输出: 10
说明: S = “time#bell#” , indexes = [0, 2, 5] 。

提示:
1 <= words.length <= 2000
1 <= words[i].length <= 7
每个单词都是小写字母 。

class Solution {
    public int minimumLengthEncoding(String[] words) {
        int res = 0;
        //将所有的字符串变成List放入set中
        Set<String> newSet = new HashSet<>(Arrays.asList(words));
        for (String word : words) {
            int len = word.length();
            for (int i = 1; i < len; i++) {
                newSet.remove(word.substring(i));
            }
        }
        for (String s : newSet) {
            res += s.length()+1;
        }
        return res;
    }
}
  • 利用set的不可重复机制,去除每个字符串除自己外的所有子集。
全部评论

相关推荐

点赞 评论 收藏
分享
10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务