zoukankan      html  css  js  c++  java
  • [leetcode-648-Replace Words]

    In English, we have a concept called root, which can be followed by some other words to form another longer word - let's call this word successor. For example, the root an, followed by other, which can form another word another.

    Now, given a dictionary consisting of many roots and a sentence. You need to replace all the successor in the sentence with the root forming it. If a successor has many roots can form it, replace it with the root with the shortest length.

    You need to output the sentence after the replacement.

    Example 1:

    Input: dict = ["cat", "bat", "rat"]
    sentence = "the cattle was rattled by the battery"
    Output: "the cat was rat by the bat"
    

    Note:

    1. The input will only have lower-case letters.
    2. 1 <= dict words number <= 1000
    3. 1 <= sentence words number <= 1000
    4. 1 <= root length <= 100
    5. 1 <= sentence words length <= 1000

    思路:

    思路很朴素,就是将句子里每一个单词从到尾求子串,如果这个子串出现在了dict里,那么就把这个单词替换掉。

    string replaceWords(vector<string>& dict, string sentence)
        {
            map<string, string>mpdic;
            for (auto s : dict)mpdic[s] = s;
            vector<string>word;
            stringstream ss(sentence);
            string tmp;
            while (ss >> tmp)word.push_back(tmp);
            for (auto &str : word)
            {
                for (int i = 1; i < str.length();i++)
                {
                    if (mpdic.count(str.substr(0,i)))
                    {
                        str = str.substr(0, i);
                        break;
                    }
                }
            }
            string ret = word[0];
            for (int i = 1; i < word.size();i++)ret += " " + word[i];
            return ret;        
        }
  • 相关阅读:
    搭建高可用K8S集群
    K8S部署apollo配置中心
    微服务二:微服务的拆分、设计模式、内部结构
    微服务一:微服务概念入门及发展历程
    k8s可视化管理dashboard
    Windows节点加入K8S集群(K8S搭建Linux和Window混合集群)
    K8S搭建单点集群+问题处理
    K8S核心概念
    毕业论文word排版设置
    Anaconda3+PyTorch安装教程
  • 原文地址:https://www.cnblogs.com/hellowooorld/p/7229681.html
Copyright © 2011-2022 走看看