Leetcode 820. 单词的压缩编码

问题描述

给定一个单词列表,我们将这个列表编码成一个索引字符串 S 与一个索引列表 A
例如,如果这个列表是 ["time", "me", "bell"],我们就可以将其表示为 S = "time#bell#"indexes = [0, 2, 5]

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

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

解题报告

将每个单词倒序建立字典树。

实现代码

class TrieNode{
    TrieNode* children[26];
    public:
    // count记录某位字母是否是一个单词的结尾
        int count;
        TrieNode() {
            for(int i = 0; i < 26; ++i) 
                children[i] = NULL;
            count = 0;
        }
        TrieNode* get(char c) {
            if (children[c-'a']==NULL) {
                children[c-'a']=new TrieNode();
                count++;
            }
            return children[c-'a'];
        }
};
class Solution {
public:
    int minimumLengthEncoding(vector<string>& words) {
        // 定义一棵字典树,字典树的入口节点
        TrieNode* trie = new TrieNode();
        unordered_map<TrieNode*, int>nodes;

        for (int i = 0; i < (int)words.size(); ++i) {
            string word = words[i];
            // 重新将cur指向字典树的入口节点
            TrieNode* cur = trie;
            for (int j = word.length() - 1; j >= 0; --j)
                cur = cur->get(word[j]);
                // 将末尾节点对应的单词索引记录下来
            nodes[cur] = i;
        }

        int ans = 0;
        for (auto& [node, idx] : nodes) {
            if(node->count == 0) {
                ans += words[idx].length() + 1;
            }
        }
        return ans;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值