题目:

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 words exactly 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).  (Hard)

分析:

题目意思是找到所有起始位置,使得往后的若干连续字符组成的字符串 的正好是集合中所有元素组成的字符串。

自己考虑到的还是一个暴力的做法,没有超时,写起来也没那么容易。

大致思路是建一个hash存放words不同元素出现在words中的次数(开始只存放有无,后来发现words中元素可重复)

然后对s进行遍历,从每个位置开始,依次取len长度的字符串,与hash中的值比较。根据在不在hash内进行跳出循环,hash[words[j]]--等操作.

到words.size() -1 长度自然跳出循环,说明完全匹配,可以将这个i加入结果。

代码:

 class Solution {
public:
vector<int> findSubstring(string s, vector<string>& words) {
int len = words[].size();
unordered_map<string, int> count;
vector<int> result;
if (s.size() < words.size() * len) {
return result;
}
for (int k = ; k < words.size(); ++k) {
if (count.find(words[k]) == count.end()) {
count[words[k]] = ;
}
else {
count[words[k]] ++;
}
}
unordered_map<string, int> save = count;
for (int i = ; i <= s.size() - words.size() * len; i++) {
int flag = ;
for (int j = i; j < i + words.size() * len ; j += len) {
string temp = s.substr(j, len);
if (count.find(temp) != count.end()) {
if (count[temp] > ) {
count[temp]--;
}
else {
flag = ;
break;
}
}
else {
flag = ;
break;
}
}
if (flag == ) {
result.push_back(i);
}
count = save;
}
return result;
}
};

8月19日更新:

对于自己的实现中,每次更新i都需要拷贝一次hash表。

可以换一种方式,一个hash作为基准在循环前准备好。然后对于每个i生成一个新的hash,添加元素进去,与老的比较,比拷贝应该效率要高。

其他注意事项:

1. words.size(),s.size()都是unsigned int,所以做减法之后不会出现 -1,所以导致由此限定循环有问题,所以自己在前面加了一个

if (s.size() < words.size() * len) 
 搞清楚原因后前面声明两个int变量可以把这个if去掉。
2. unordered_map<string,int> hash可以直接对hash[temp]++,没有的话就是从0加1,默认初始化的0。
所以修改后的代码:
 class Solution {
public:
vector<int> findSubstring(string s, vector<string>& words) {
int len = words[].size();
unordered_map<string, int> count;
vector<int> result;
for (int k = ; k < words.size(); ++k) {
count[words[k]]++;
}
//s.size() - words.size() * len 结果是个unsigned;
int n = s.size(), m = words.size();
for (int i = ; i <= n - m * len; i++) {
unordered_map<string, int> hash;
int flag = ;
for (int j = i; j < i + words.size() * len ; j += len) {
string temp = s.substr(j, len);
hash[temp]++;
if (hash[temp] > count[temp]) {
flag = ;
break;
}
}
if (flag == ) {
result.push_back(i);
}
}
return result;
}
};

好像还有个滑动窗口的解法,回头头脑清楚再研究...

LeetCode30 Substring with Concatenation of All Words的更多相关文章

  1. 【leetcode】Substring with Concatenation of All Words

    Substring with Concatenation of All Words You are given a string, S, and a list of words, L, that ar ...

  2. LeetCode - 30. Substring with Concatenation of All Words

    30. Substring with Concatenation of All Words Problem's Link --------------------------------------- ...

  3. leetcode面试准备: Substring with Concatenation of All Words

    leetcode面试准备: Substring with Concatenation of All Words 1 题目 You are given a string, s, and a list o ...

  4. [LeetCode] 30. Substring with Concatenation of All Words 解题思路 - Java

    You are given a string, s, and a list of words, words, that are all of the same length. Find all sta ...

  5. [Leetcode][Python]30: Substring with Concatenation of All Words

    # -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com' 30: Substring with Concatenation of All ...

  6. leetcode-algorithms-30 Substring with Concatenation of All Words

    leetcode-algorithms-30 Substring with Concatenation of All Words You are given a string, s, and a li ...

  7. LeetCode: Substring with Concatenation of All Words 解题报告

    Substring with Concatenation of All Words You are given a string, S, and a list of words, L, that ar ...

  8. leetCode 30.Substring with Concatenation of All Words (words中全部子串相连) 解题思路和方法

    Substring with Concatenation of All Words You are given a string, s, and a list of words, words, tha ...

  9. LeetCode HashTable 30 Substring with Concatenation of All Words

    You are given a string, s, and a list of words, words, that are all of the same length. Find all sta ...

随机推荐

  1. Codeforces Educational Codeforces Round 15 C. Cellular Network

    C. Cellular Network time limit per test 3 seconds memory limit per test 256 megabytes input standard ...

  2. HDU ACM 1325 / POJ 1308 Is It A Tree?

    Is It A Tree? Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Tot ...

  3. Android Studio 中SDK Manager的设置

    android studio 代码块左边的缩进对齐线的颜色修改:  Settings -> Editor -> Colors & Fonts -> General -> ...

  4. OpenXML操作word

    OpenXML概述 项目中经常需要操作word,之前的方式是采用COM接口,这个接口很不稳定,经常报错.现在开始采用OpenXML.OpenXML(OOXML)是微软在Office 2007中提出的一 ...

  5. LightOJ 1245 Harmonic Number (II)(找规律)

    http://lightoj.com/volume_showproblem.php?problem=1245 G - Harmonic Number (II) Time Limit:3000MS    ...

  6. 咏南C/S开发框架支持最新的DELPHI XE8开发

    特大好消息:咏南C/S开发框架支持最新的DELPHI XE8开发!咏南开发框架让你再无开发工具升级后顾之忧! 购买咏南开发框架送项目源码!

  7. thinkphp利用行为扩展实现监听器

    1.在User/login函数中添加如下代码 tag('login_listener',$result); //alert('success', '恭喜,登录成功', U('xx/yy')); 去掉跳 ...

  8. wcf+linq to sql中关联查询返回数据问题

    前段时间准备采用wcf+nh框架开发sl程序,发现采用nh开发不适合我的中型.并且快速开发项目,所以综合考量了下,决定采用wcf+linq to sql . 但是此模式也有缺点,也是linq to s ...

  9. UITextFiled,UIButton,UIImageView交互相互之间的事件拦截

    UIButton右上方添加一个笑button如: UIButton *button =[UIButton buttonWithType:UIButtonTypeCustom];    button.f ...

  10. junit学习(3.x)

    自动化测试 测试所有测试类 import junit.framework.TestCase; import junit.framework.Assert; /** *测试类必须要继承TestCase类 ...