首页 > 其他 > 详细

LeetCode 459.重复的子字符串

时间:2020-08-24 20:56:49      阅读:85      评论:0      收藏:0      [点我收藏+]

题目描述链接:https://leetcode-cn.com/problems/repeated-substring-pattern/

LeetCode  C++求解代码:

class Solution {
public:
    bool repeatedSubstringPattern(string s) {
          int n=s.size();
          for(int i=1;2*i<=n;i++){
              if(n%i==0){
                bool match=true;
                for(int j=i;j<n;j++){
                   if(s[j]!=s[j-i]){
                       match=false;
                       break;
                   }
                }
                if(match){
                    return true;
                }
            } 
          }
          return false;
    }
};

 

LeetCode 459.重复的子字符串

原文:https://www.cnblogs.com/zzw-/p/13555840.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!