DP动态规划专题十五:LeetCode 97. Interleaving String

LeetCode 97. Interleaving String

Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.

Example 1:

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"
Output: true
Example 2:

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbbaccc"
Output: false

一定要注意审题,这道题的interleaving的意思是a,b都得用完。

    public boolean isInterleave(String s1, String s2, String s3) {
        if (s1.length() + s2.length() != s3.length()) return false;
        int[][] allResult = new int[s1.length() + 1][s2.length() + 1];
        return helper(s1, s2, s3, s3.length() - 1, s1.length() - 1, s2.length() - 1, allResult);
    }
    public boolean helper(String s1, String s2, String s3, int index, int i, int j, int[][] allResult) {
        if (index < 0) return true;
        if (allResult[i+1][j+1] == -1) return false;
        boolean res = false;
        char c3 = s3.charAt(index);
        if (i >= 0 && c3 == s1.charAt(i)) {
            res = res || helper(s1, s2, s3, index - 1, i - 1, j, allResult);
        }
        if (j >= 0 && c3 == s2.charAt(j)) {
            res = res || helper(s1, s2, s3, index - 1, i, j - 1, allResult);
        }
        if (res == false) allResult[i+1][j+1] = -1;
        return res;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值