博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Substring with Concatenation of All Words
阅读量:5153 次
发布时间:2019-06-13

本文共 1867 字,大约阅读时间需要 6 分钟。

问题描述

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).

 

解决思路

最直观的办法:

1. 用一个boolean[] flag,大小和输入的字符串相同,flag[i]代表s[i...i+lenOfToken]是否在words中;

2. 计算出拼接字符串的长度,然后依次检查是否完全覆盖words(用一个HashMap记录)。

时间复杂度为O(n),空间复杂度为O(n).

 

注意:words中的word有可能有重复。

 

程序

public class Solution {    public List
findSubstring(String s, String[] words) { List
res = new ArrayList<>(); if (s == null || s.length() == 0 || words == null || words.length == 0) { return res; } //
HashMap
map = new HashMap
(); for (String w : words) { if (map.containsKey(w)) { map.put(w, map.get(w) + 1); } else { map.put(w, 1); } } int lenOfToken = words[0].length(); int numOfToken = words.length; int len = s.length(); boolean[] flag = new boolean[len]; // speed up int i = 0; while (i + lenOfToken <= len) { String sub = s.substring(i, i + lenOfToken); if (map.containsKey(sub)) { flag[i] = true; } ++i; } int totalLen = lenOfToken * numOfToken; for (i = 0; i + totalLen <= len; i++) { if (!flag[i]) { continue; } int k = numOfToken; int j = i; HashMap
map_tmp = new HashMap
(map); while (k > 0) { String word_tmp = s.substring(j, j + lenOfToken); if (!flag[j] || !map_tmp.containsKey(word_tmp) || map_tmp.get(word_tmp) == 0) { break; } map_tmp.put(word_tmp, map_tmp.get(word_tmp) - 1); j += lenOfToken; --k; } if (k == 0) { res.add(i); } } return res; }}

 

转载于:https://www.cnblogs.com/harrygogo/p/4722127.html

你可能感兴趣的文章
△UVA10106 - Product(大数乘法)
查看>>
golang (7) 文件操作
查看>>
关于 Object.defineProperty()
查看>>
免认证的ssh登录设置
查看>>
Win10中VMware14安装CentOS7详细步骤
查看>>
Oracle SOA Suite OverView
查看>>
APP和服务端-架构设计(二)
查看>>
基于Android2.2的联系人的基本操作
查看>>
Button的四中点击事件
查看>>
左侧楼层导航
查看>>
[转] Maven 从命令行获取项目的版本号
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
Java Development Environment in Linux: Install and Configure Oracle
查看>>
Delphi XE2 update4 很快就要来了
查看>>
Mac 关机卡住
查看>>
Python--进程与线程
查看>>
ssm开发随笔
查看>>
fidder使用
查看>>
circos的ubuntu和mac安装
查看>>