Given two strings s and t, return trueifsis a subsequence oft, orfalseotherwise.
A subsequence of a string is a new string that is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (i.e., "ace" is a subsequence of "abcde" while "aec" is not).
Example 1:
1 2
Input: s = "abc", t = "ahbgdc" Output: true
Example 2:
1 2
Input: s = "axc", t = "ahbgdc" Output: false
双指针:
时间复杂度:O(n+m)
空间复杂度:O(1)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
classSolution { public: boolisSubsequence(string s, string t){ int n = s.length(), m = t.length(); int i = 0, j = 0; while (i < n && j < m) { if (s[i] == t[j]) { i++; } j++; } return i == n; } };