-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterleaving_String.java
More file actions
75 lines (59 loc) · 2.04 KB
/
Interleaving_String.java
File metadata and controls
75 lines (59 loc) · 2.04 KB
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
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return true.
When s3 = "aadbbbaccc", return false.
// recurvise method, time limit exceeded for large dataset
public class Solution {
public boolean isInterleave(String s1, String s2, String s3) {
// Start typing your Java solution below
// DO NOT write main() function
if(s1.length() + s2.length() != s3.length())
return false;
if(s1.length()==0 || s2.length()==0 || s3.length()==0) {
if((s1 + s2).equals(s3))
return true;
else
return false;
}
if(s1.charAt(0)!=s3.charAt(0) && s2.charAt(0)!=s3.charAt(0))
return false;
if( s1.charAt(0)==s3.charAt(0) && isInterleave(s1.substring(1), s2, s3.substring(1)))
return true;
if( s2.charAt(0)==s3.charAt(0) && isInterleave(s1, s2.substring(1), s3.substring(1)))
return true;
return false;
}
}
//////////////////////////////////////////////////////////////////
// dynamic programming
public class Solution {
public boolean isInterleave(String s1, String s2, String s3) {
if(s3.length() != (s1.length() + s2.length()))
return false;
boolean [][] match = new boolean [s1.length()+1][s2.length()+1];
match[0][0]=true;
int i = 1;
while(i<=s1.length() && s1.charAt(i-1)==s3.charAt(i-1)) {
match[i][0]=true;
i++;
}
i = 1;
while(i<=s2.length() && s2.charAt(i-1)==s3.charAt(i-1)) {
match[0][i]=true;
i++;
}
for(i=1; i<=s1.length(); i++) {
for(int j=1; j<=s2.length(); j++) {
char c = s3.charAt(i+j-1);
if(c==s1.charAt(i-1))
match[i][j] = match[i-1][j] || match[i][j];
if(c==s2.charAt(j-1))
match[i][j] = match[i][j-1] || match[i][j];
}
}
return match[s1.length()][s2.length()];
}
}