Interleaving Two Strings

You are given three strings 'A', 'B' and 'C'. Check whether 'C' is formed by an interleaving of 'A' and 'B'.

'C' is said to be interleaving 'A' and 'B', if the length of 'C' is equal to the sum of the length of 'A' and length of 'B', all the characters of 'A' and 'B' are present in 'C' and the order of all these characters remains the same in all three strings.

For Example:
If A = “aab”, 'B' = “abc”, 'C' = “aaabbc”
Here 'C' is an interleaving string of 'A' and 'B'. because 'C' contains all the characters of 'A' and 'B' and the order of all these characters is also the same in all three strings.

interleaving

If 'A' = “abc”, 'B' = “def”, 'C' = “abcdefg”
Here 'C' is not an interleaving string of 'A' and 'B'. 'B'ecause neither A nor 'B' contains the character ‘g’.
Input format:
The first line contains an integer 'T' which denotes the number of test cases or queries to be run. Then, the T test cases follow.

The first and only line of each test case contains three strings 'A', 'B' and 'C' each separated by a single space.
Output format:
For each test, print True, if 'C' is an interleaving string of 'A' and 'B, otherwise print False in a separate line.
Note:
You do not need to print anything, it has already been taken care of. Just implement the given function.
'C'onstraints:
1 <= T <= 10
1 <= |'A'|, |'B'| <= 150
1 <= |'C'| <= 300

where |A|, |'B'|, |'C'| denotes the length of string 'A', 'B' and 'C' respectively.   
All the characters of the strings 'A', 'B' and 'C' contain lowercase English letters only.

Time limit: 1 sec
CodingNinjas
author
2y

Solution Steps:

1 . Create a DP array (matrix) of size M*N, where m is the size of the first string, and n is the size of the second string. 2. Initialize the matrix to false.
3. If the sum of sizes of ...read more

CodingNinjas
author
2y
Brute-force

Approach:

In order to solve this problem, let us solve a smaller problem first. Let’s assume that the length of the string A and B is 1 and the length of the string C is 2. Now in order to c...read more

CodingNinjas
author
2y
Dynamic Programming with memoization

In the previous approach, the algorithm recursively calculates and compares every possible character of A and B with C, which has many overlapping subproblems. i.e. recursive function computes the same sub-problems again and again. So we can use memoization to overcome the overlapping subproblems. To reiterate, memoization is when we store the results of all previously solved subproblems and return whether C is formed by interleaving A and B or not, from the dp[i][j] if we encounter the problem that has already been solved.

 

Since there are three states those are changing in the recursive function, but the change in the string C is just a result of a change in string A and string B, so we use the 2-dimensional array dp[][] to store all the subproblems where dp[i][j] will store whether C is formed by interleaving A from 0 to ith character and B from 0 to jth character or not.

 

Steps:

  1. Create a dp array of size (N+1 * M+1) where N and M are lengths of A and B respectively. Initialize dp table to -1 initially.
  2. Then we create a recursive function let’s say isInterleavingUtil and pass A, B, C, n1, n2, n3 and the dp array as arguments, where n1,n2, and n3 are the length of A, B, and C.

bool isInterleaveUtil( A, B, C, n1, n2, n3, dp):

  1. If all the strings become empty i.e n1,n2.and n3 become 0, then simply return true.
  2. If the length of C is not equal to (length of A + length of B),i.e  n1+n2 != n3 then we simply return false.
  3. If we already solve the same subproblem for the remaining of strings A, B and C i.e. dp[n1][n2] != -1, then return dp[n1][n2].
  4. If the last character of both A and B matches with the last character of C, then we check for both the cases i.e. retreating A by one character and B by one character i.e call isInterleaveUtil(A, B, C, n1-1, n2, n3-1, dp) and isInterleaveUtil(A, B, C, n1, n2-1, n3-1, dp), and store the result of both functions in dp[n1][n2], and return true, if either of them returns true.
  5. If the last character of C matches with the last character of A, but not with the last character of B, we move one character back in A and check recursively. I.e. call  isInterleaveUtil(A, B, C, n1-1, n2, n3-1, dp), then store the result of function in dp[n1][n2]
  6. If the last character of C matches with the last character of B, but not with the last character of A, we move one character back in B and check recursively. I.e. call  isInterleaveUtil(A, B, C, n1, n2-1, n3-1, dp), then store the result of function in dp[n1][n2].
  7. If the last character of C matches neither with the last character of A nor with the last character of B, then we simply return false.
Space Complexity: O(m*n) - For 2d arraysExplanation:

O(N*M), where N is the length of the string A and M is the length of string B.

 

In the worst case, extra space is required to create the dp array of size N*M i.e O(N*M) and also for the recursion stack. Hence, the overall complexity will be O(N*M).

Time Complexity: O(m*n) - For 2d arraysExplanation:

O(N*M), where N is the length of the string A and M is the length of string B.

 

In the worst case, for every pair of characters in A and B, it is being computed only once. So the overall time complexity will be O(N*M).

CodingNinjas
author
2y
Bottom-Up DP

Approach:

The idea is to use a bottom-up dynamic programming approach instead of a memoization approach. In this, we use the recurrence relation of memoization approach as dp[i][j] = (dp[i-...read more

CodingNinjas
author
2y
1D Dynamic Programming

Approach:

The space complexity for the last two approaches is O(N*M), however, it can be improved further to O(min(M,N)), if we use 1D dp array. The approach is the same as the pr...read more

Add answer anonymously...
Cisco Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter