记录 ----- 给定两个字符串,求最小子串

给定两个字符串,求最小子串

给定一个字符串 S 和一个字符串 T,请在 S 中找出包含 T 所有字母的最小子串。

示例:

输入: S = "ADOBECODEBANC", T = "ABC"
输出: "BANC"

说明:

*   如果 S 中不存这样的子串,则返回空字符串 `""` 。
package duzhicheng.mapdemo;

import org.springframework.util.StringUtils;

public class Demo2 {

    private static int cun = 0;
    private static int cun1 = 0;

    public static void main(String[] args) {
        String a = "ADOBANCDEBANC";
        String b = "ABC";
        String str = getStr(a, b);
        System.out.println(str);
    }


    public static String getStr(String a , String b){
        try {
            cun ++;
            if(StringUtils.isEmpty(a) || StringUtils.isEmpty(b)){
                return  "字符串为空";
            }
            if(a.length() < b.length()){
                return "父字符串长度小于子字符串";
            }
            int length_b = b.length();
            int start = cun-1;
            if(start > (a.length() - b.length()-cun1)){
                start = 0;
                cun = 1;
                cun1 ++;
            }
            int end = start+length_b + cun1;
            String c = a.substring(start,end);
            int count = 0;
            String bb = b;
            for(int i = 0 ; i < c.length(); i++){
                String value = String.valueOf(c.charAt(i));
                if(bb.contains(value)){
                    bb = bb.replace(value, "");
                    count++;
                }
            }
            if(count == length_b){
                return c;
            }else {
                String str = getStr(a, b);
                return  str;
            }
        } catch (Exception e) {
            return "没有找到对应的最小子串";
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值