java实现判断是否包含字符串方法

今天在刷LeetCode时遇到一题判断是否包含字符串的问题,不过对字母排列顺序没有限制,而且有其他要求,写着写着发现还挺像java里的contains()方法,于是就改动了些,粗糙实现了个判断字符串是否包含某字符串的方法。简单测试了下没什么问题。

    public static boolean isContains(String t, String s) {
        //判null判空
        if(s == null || t == null)  return false;
        if(s == "") return true;
        if(t == "" && s == "")  return true;
        if(t == "") return false;

        int countT = 0;//包含字符串匹配次数
        int countS = 0;//被包含字符串匹配次数
        char ta,sa;//字符串中的每一个字母

        for(int i = 0;i < t.length();i++){
            ta = t.charAt(i);
            sa = s.charAt(countS);
            if(ta == sa && countS < s.length())
                countS++;
            if(countS != 0)
                countT++;
            if(countS == s.length())//被包含字符串匹配完毕
                    break;
        }

        if(countS == s.length() && countS == countT)   return true;
        else    return false;
    }

    public static void main(String[] args) {
        String t = "1abc2";
        String s = "abc";
        System.out.println(isContains(t, s));//打印true
    }

转载于:https://www.cnblogs.com/xiaotan24/p/5400415.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值