LeetCode - 820. 单词的压缩编码

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

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

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

那么成功对给定单词列表进行编码的最小字符串长度是多少呢?
LeetCode - 820. 单词的压缩编码_第1张图片
解题思路: 本题一开始想到的思路是找相同的后缀,因为相同后缀的单词才能一起编码,但是越往后面思考,发现会把问题搞复杂。然后直接看网友Grandyang博客的解法,基本思路是只有短的单词才能合并到长的单次中,然后先考虑处理长单词,那么这里就要先对words排序。然后遍历words数组,遍历的过程中,查看当前的单词是否在已拼接的字符串中,若在则要check一下,单词尾部的下一个元素是否是"#",否则将单词拼接到结果字符串中,并在尾部追加"#".

class Solution {
     
public:
    int minimumLengthEncoding(vector<string>& words) {
     
        sort(words.begin(), words.end(), [](auto a, auto b){
     return a.size() > b.size();});
        string res;
        for (auto word : words) {
     
            int pos = res.find(word);
            if (pos == string::npos || res[pos + word.size()] != '#') {
     
                res += word + "#";
            } 
        }
        return res.size();
    }
};

你可能感兴趣的:(leetcode,字符串,leetcode)