avatar

LeetCode-329 判断子序列

📝题目

1
2
3
4
5
6
7
8
9
10
11
12
13
给定字符串 s 和 t ,判断 s 是否为 t 的子序列。
你可以认为 s 和 t 中仅包含英文小写字母。字符串 t 可能会很长(长度 ~= 500,000),而 s 是个短字符串(长度 <=100)。
字符串的一个子序列是原始字符串删除一些(也可以不删除)字符而不改变剩余字符相对位置形成的新字符串。(例如,"ace"是"abcde"的一个子序列,而"aec"不是)。

示例 1:
s = "abc", t = "ahbgdc"

返回 true.

示例 2:
s = "axc", t = "ahbgdc"

返回 false.


📝思路

注意,字符串t可能很长,所以不适合用下标去标记和遍历(大概率会溢出)。
使用双指针方式进行遍历,判断方式以字符串s是否遍历完为标准。

📝题解

1
2
3
4
5
6
7
8
9
bool isSubsequence(string s, string t) {
char* spt = &s[0];
char* tpt = &t[0];
while(*spt && *tpt){
if (*spt == *tpt) spt++;
tpt++;
}
return (*spt == '\0');
}
Author:WhiteBeerHouse
Link:https://github.com/WhiteBeerHouse/WhiteBeerHouse.github.io/tree/master/2020/04/08/LeetCode-329-%E5%88%A4%E6%96%AD%E5%AD%90%E5%BA%8F%E5%88%97/
Copyright Notice:All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.