File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ bool isInterleave (char * s1 , char * s2 , char * s3 ) {
2
+ int len1 = strlen (s1 );
3
+ int len2 = strlen (s2 );
4
+ int len3 = strlen (s3 );
5
+
6
+ // If the lengths of the input strings don't add up correctly, return false
7
+ if (len1 + len2 != len3 ) {
8
+ return false;
9
+ }
10
+
11
+ // Create a 2D DP array to store the results of subproblems
12
+ bool dp [len1 + 1 ][len2 + 1 ];
13
+ memset (dp , false, sizeof (dp ));
14
+
15
+ // Base case: empty strings can always interleave to form an empty string
16
+ dp [0 ][0 ] = true;
17
+
18
+ // Fill in the DP array
19
+ for (int i = 0 ; i <= len1 ; i ++ ) {
20
+ for (int j = 0 ; j <= len2 ; j ++ ) {
21
+ // If s1 matches the interleaved portion of s3
22
+ if (i > 0 && s1 [i - 1 ] == s3 [i + j - 1 ]) {
23
+ dp [i ][j ] = dp [i ][j ] || dp [i - 1 ][j ];
24
+ }
25
+ // If s2 matches the interleaved portion of s3
26
+ if (j > 0 && s2 [j - 1 ] == s3 [i + j - 1 ]) {
27
+ dp [i ][j ] = dp [i ][j ] || dp [i ][j - 1 ];
28
+ }
29
+ }
30
+ }
31
+
32
+ return dp [len1 ][len2 ];
33
+ }
You can’t perform that action at this time.
0 commit comments