-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathis_subsequence.dart
117 lines (89 loc) · 2.73 KB
/
is_subsequence.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
-* 392. Is Subsequence *-
Given two strings s and t, return true if s is a subsequence of t, or false otherwise.
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:
Input: s = "abc", t = "ahbgdc"
Output: true
Example 2:
Input: s = "axc", t = "ahbgdc"
Output: false
Constraints:
0 <= s.length <= 100
0 <= t.length <= 104
s and t consist only of lowercase English letters.
Follow up: Suppose there are lots of incoming s, say s1, s2, ..., sk where k >= 109, and you want to check one by one to see if t has its subsequence. In this scenario, how would you change your code?
*/
class A {
bool isSubsequence(String s, String t) {
if (s.length > t.length) return false;
int j = 0;
for (int i = 0; i < t.length && j < s.length; i++) {
if (s[j] == t[i]) {
j++;
}
}
if (j == t.length) return true;
return false;
}
}
class B {
bool isSubString(String s, String t, int m, int n) {
if (m == 0) return true;
if (n == 0) return false;
// If last characters of two
// strings are matching
if (s[m - 1] == t[n - 1]) return isSubString(s, t, m - 1, n - 1);
// If last characters are
// not matching
return isSubString(s, t, m, n - 1);
}
bool isSubsequence(String s, String t) {
if (isSubString(s, t, s.length, t.length)) return true;
return false;
}
}
class C {
int isSubString(String s1, String s2, int i, int j, List<List<int>> t) {
if (i == 0 || j == 0) return 0;
if (t[i][j] != -1) return t[i][j];
if (s1[i - 1] == s2[j - 1])
return t[i][j] = 1 + isSubString(s1, s2, i - 1, j - 1, t);
else
return t[i][j] = isSubString(s1, s2, i, j - 1, t);
}
bool isSubsequence(String s, String t) {
int m = s.length;
int n = t.length;
// initializing dp matrix with -1
if (m > n) return false;
List<List<int>> f =
List.filled(m + 1, 0).map((e) => List.filled(n + 1, -1)).toList();
if (isSubString(s, t, m, n, f) == m) return true;
return false;
}
}
class D {
bool isSubsequence(String s, String t) {
for (int x = t.length - 1; x >= 0 && s.isNotEmpty; x--)
if (t[x] == s[s.length - 1])
s.split("").removeLast(); //treating subsequence string as a stack
return s.isEmpty;
}
}
class E {
bool isSubsequence(String s, String t) {
int p1 = 0;
int p2 = 0;
while (p1 < s.length) {
while (p2 < t.length) {
if (s[p1] == t[p2]) break;
p2++;
}
if (p2 == t.length) return false;
p1++;
p2++;
}
return true;
}
}