Is Subsequence

update Aug 4,2017 21:51

LeetCodearrow-up-right

Given a string s and a string t, check if s is subsequence of t.

You may assume that there is only lower case English letters in both s and t. t is potentially a very long (length ~= 500,000) string, and s is a short string (<=100).

A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (ie, "ace" is a subsequence of "abcde" while "aec" is not).

Example 1:

s = "abc", t = "ahbgdc"
Return true.

Example 2:

s = "axc", t = "ahbgdc"
Return false.

Follow up: If there are lots of incoming S, say S1, S2, ... , Sk where k >= 1B, and you want to check one by one to see if T has its subsequence. In this scenario, how would you change your code?

Basic Idea:

最简单的方法就是遍历一遍,两个指针分别跟踪当前对比的t和s中的字符,O(len(t))时间。 对于follow up,如果对于单一的 t 有很多 s 需要对比,我们可以把 t 进行预处理,存入一个 hashmap,key是t中的每个字符,value则是这些字符出现的indice。这样,我们只要遍历一遍 s,每次对于每个字符,用二分法找它们出现的位置即可。 例如:

// Follow-up: O(N) time for pre-processing, O(Mlog?) for each S.
// Eg-1. s="abc", t="bahbgdca"
// idx=[a={1,7}, b={0,3}, c={6}]
//  i=0 ('a'): prev=1
//  i=1 ('b'): prev=3
//  i=2 ('c'): prev=6 (return true)
// Eg-2. s="abc", t="bahgdcb"
// idx=[a={1}, b={0,6}, c={5}]
//  i=0 ('a'): prev=1
//  i=1 ('b'): prev=6
//  i=2 ('c'): prev=? (return false)

Java Code:

方法1:

方法2: