zoukankan      html  css  js  c++  java
  • 30. Substring with Concatenation of All Words (String; HashTable)

    You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in wordsexactly once and without any intervening characters.

    For example, given:
    s: "barfoothefoobarman"
    words: ["foo", "bar"]

    You should return the indices: [0,9].
    (order does not matter).

    思路: 判断一个值是否包含在一个数组中,首先应该想到将这个数组中的元素放入HashTable,否则每次查找都需要O(n)的时间复杂度。

    时间复杂度:O(n*size),其中n为s的长度,size是指数组words包含多少个元素。当words元素不多的时候,我们可以说时间复杂度是线性的O(n)

    class Solution {
    public:
        vector<int> findSubstring(string s, vector<string>& words) {
            size = words.size();
            sLen = s.length();
            wLen = words[0].length();
            wordsLen = wLen * size;
            for(i = 0; i < size; i++){
                word_counter[words[i]]++;
            }
            
            i = 0;
            while(i+wordsLen<=sLen){
                for(j = 0; j < size; j++){
                    cmpStr = s.substr(i+j*wLen, wLen);
                    if(word_counter.find(cmpStr)==word_counter.end()){ //不在words中,不符合
                        break;
                    }
                    
                    counting[cmpStr]++;
                    if(counting[cmpStr]>word_counter[cmpStr]){ //出现的次数多过words中的次数,不符合
                        break;
                    }
                }
                if(j==size){//找到了一个符合的结果
                    ret.push_back(i);
                }
                counting.clear();
                i++;
            }
            return ret;
        }
    private:
        string cmpStr;
        vector<int> ret;
        map<string,int> word_counter;
        map<string,int> counting;
        int size; //number of words
        int sLen;
        int wLen;
        int wordsLen;
        int i;
        int j;
    };

     

  • 相关阅读:
    JAVAWEB 一一框架整合(SSI : Spring+SpringMVC+ ibtis)
    接口一一默认方法
    内部类
    java抽象类的使用
    Node(十)之Mongoose配合Node路由实现邮箱注册登录(Post版)
    Node(九)之Node配合MongoDB实现简单的注册登录
    Node(八)之MongoDB简单应用
    JS案例:Ajax实现简单局域网聊天室
    JS瀑布流懒加载案例
    JS表格小案例
  • 原文地址:https://www.cnblogs.com/qionglouyuyu/p/4823330.html
Copyright © 2011-2022 走看看