LeetCode--medium--interleaving_string_97

summary:

divide and conquer | memorization

package myapp.kit.leetcode.top200;

import java.util.HashMap;
import java.util.Map;

/**
 *
 * 97
 * hard
 * https://leetcode.com/problems/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
 * @author huangdingsheng
 * @version 1.0, 2020/7/21
 */
public class interleaving_string_97 {

    private Map<String, Boolean> cache;

    public boolean isInterleave(String s1, String s2, String s3) {
        if (s1.length() + s2.length() != s3.length()) {
            return false;
        }
        cache = new HashMap<>();
        return search(s1, s2, s3);
    }

    // divide and conquer + memorization
    public boolean search(String s1, String s2, String s3) {
        String key = s1 + "-" + s2 + "-" + s3;
        if (cache.containsKey(key)) {
            return cache.get(key);
        }
        boolean result = false;
        if (s1.length() == 0) {
            result = s2.equals(s3);
        } else if (s2.length() == 0) {
            result = s1.equals(s3);
        } else {
            if (s1.charAt(s1.length() - 1) == s3.charAt(s3.length() - 1)) {
                result = result || search(s1.substring(0, s1.length() - 1), s2, s3.substring(0, s3.length() - 1));
            }
            // pruning
            if (!result) {
                if (s2.charAt(s2.length() - 1) == s3.charAt(s3.length() - 1)) {
                    result = result || search(s1, s2.substring(0, s2.length() - 1), s3.substring(0, s3.length() - 1));
                }
            }
        }
        cache.put(key, result);
        return result;
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值