459. Repeated Substring Pattern

本文介绍了一种算法,用于判断一个给定的非空字符串是否可以通过重复其内部的一个子字符串来构造。通过逐步分析并提供代码实现,展示了如何验证这一条件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Given a non-empty string checkif it can be constructed by taking a substring of it and appending multiplecopies of the substring together. You may assume the given string consists oflowercase English letters only and its length will not exceed 10000.

Example 1:

Input: "abab"

Output: True

Explanation: It's thesubstring "ab" twice.


Example 2:

Input: "aba"

Output: False

Example 3:

Input:"abcabcabcabc"

Output: True

Explanation: It's thesubstring "abc" four times. (And the substring "abcabc"twice.)

    翻译:给定一个非空字符串检查,如果它可以通过取其子字符串并将子字符串的多个副本附加在一起构造。您可以假定给定字符串仅由小写英文字母组成,其长度不超过10000

    分析:直接假设他重复的次数,然后将它的子串和原串比较,若找到一个重复的次数,则返回ture.可能时间复杂度比较高,代码如下:

public class Solution {

    public boolean test(String s,int length){

           //比较他们的是否是重复的

           int count=s.length()/length;

           for(int i=0;i<s.length();i++){

                 if(s.charAt(i)!=s.charAt(i%count)) return false;//直接到了固定的数,循环回来比较

           }

           return true;

    }

    public booleanrepeatedSubstringPattern(String s) {

           int len=s.length();

           if(len==1) return false;

           //假设字符串循环2len

           boolean flag=false;

           for(int i=2;i<=len&&!flag;i++){

                 if(len%i!=0) continue;

                 flag=test(s,i);

           }

           return flag;

    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值