码迷,mamicode.com
首页 > 其他好文 > 详细

周期串

时间:2017-08-16 11:22:55      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ati   import   logs   java   code   ace   char   bsp   iostream   

#include <iostream>
#include <string.h>
using namespace std;

int main(){
    string str;
    cin >> str;
    for(int i = 1; i <= str.length(); i++){
        if(str.length() % i == 0){
            bool flag = true;
            for(int j = i; j < str.length(); j++){
                if(str[j] != str[j % i]){
                    flag = false;
                    break;
                }
            }
            if(flag == true){
                cout << i << endl;
                break;
            }
        }
    }
    return 0;
}

 

 1 import java.util.*;
 2 
 3 public class Cyclestring{
 4     public static void main(String[] args){
 5         String str;
 6         Scanner cin = new Scanner(System.in);
 7         str = cin.next();
 8         for(int i = 1; i <= str.length(); i++){
 9             if(str.length() % i == 0){
10                 boolean flag = true;
11                 for(int j = i; j < str.length(); j++){
12                     if(str.charAt(j) != str.charAt(j % i)){
13                         flag = false;
14                         break;
15                     }
16                     if(flag == true){
17                         System.out.println(i);
18                         break;
19                     }
20                 }
21             }
22         }
23     }
24 }

 

周期串

标签:ati   import   logs   java   code   ace   char   bsp   iostream   

原文地址:http://www.cnblogs.com/jxust-jiege666/p/7371824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!