zoukankan      html  css  js  c++  java
  • #Leetcode# 459. Repeated Substring Pattern

    https://leetcode.com/problems/repeated-substring-pattern/

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

    Example 1:

    Input: "abab"
    Output: True
    Explanation: It's the substring "ab" twice.
    

    Example 2:

    Input: "aba"
    Output: False
    

    Example 3:

    Input: "abcabcabcabc"
    Output: True
    Explanation: It's the substring "abc" four times. (And the substring "abcabc" twice.)

    代码:

    class Solution {
    public:
        bool repeatedSubstringPattern(string s) {
            vector<int> ans;
            int len = s.length();
            if(len == 1) return false;
            for(int i = 1; i * i <= len; i ++) {
                if(len % i == 0) {
                    if(i != 1) {
                        ans.push_back(i);
                        ans.push_back(len / i);
                    } else ans.push_back(1);
                }
            }
            int cnt = 0;
            for(int i = 0; i <ans.size(); i ++) {
                cnt = 0;
                string t = s.substr(0, ans[i]);
                for(int j = 0; j < len; j += ans[i]) {
                    if(t == s.substr(j, ans[i]))
                        cnt ++;
                    else break;
                }
                if(cnt == len / ans[i]) return true;
            }
            return false;
        }
    };
    

      

      要特判一下如果字符串长度只有 1 是 false

    555~

  • 相关阅读:
    ubuntu常用快捷键,不断更新中~
    C语言模拟漏斗
    浅谈webCam
    1001. A+B Format
    点、边、面——欧拉公式
    果园里的树
    生产计划
    Stanford Machine Learning 学习 2016/7/4
    paper reading
    paper reading in this week
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/10692200.html
Copyright © 2011-2022 走看看