#include <iostream>
#include <string>
#include <stdio.h>
#include <time.h>
using namespace std;
void PrintCharArray(string a);
bool CharContain(string src, string des);
int main(int argc, char *argv[])
{
/*
* 字符串的移位包含问题:给定两个字符串s1和s2,要求判断s2是否能够被s1做循环移位(rotate)得到的字符串包含。
* eg: s1 = AABCD, s2 = CDAA, 返回true; s1 = ABCD, s2 = ACBD, 返回false.
* 注意s1循环移位所有可能包含于s1s1中,因此,可以用string的find方法判断s1s1中是否包含s2.
*/
//string src = "AABBCD";
//string des = "CDAA";
//PrintCharArray(src);
//PrintCharArray(des);
//CharContain(src, des);
clock_t start_time = clock();
CharContain("AABBCD", "CDAA");
CharContain("ABCD", "ACBD");
clock_t end_time = clock();
cout << "Running time of CharContain1 is "
<< static_cast<double>(end_time - start_time) / CLOCKS_PER_SEC * 1000
<< "ms." << endl;
return 0;
}
void PrintCharArray(string a)
{
if (!a.empty())
{
int len = a.size();
for (int i = 0; i < len; i++)
{
cout << a[i];
}
}
cout << endl;
}
bool CharContain(string src, string des)
{
int len = src.size();
string tmp = src + src;
int index = tmp.find(des);
if (index != -1)
{
cout << "Case One: " << endl;
for (int i = index; i < len * 2; i++)
{
cout << tmp[i];
}
cout << endl;
cout << "s2 in s1s1." << endl << endl;
return true;
}
else
{
cout << "Case Two: " << endl;
cout << "s2 not in s1s1." << endl;
return false;
}
}
字符串循环移位包含问题
原创
©著作权归作者所有:来自51CTO博客作者Digital2Slave的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
7-5 字符串循环左移
暑假字符串专题HBU程序设计训练营总结
算法 c++ 刷题 pat 团队设计天梯赛 -
7-31 字符串循环左移
1.题目输入一个字符串和一个非负整数N,要求将字符串循环左
c语言 c++ 学习 刷题 #include -
7-31 字符串循环左移 (20分)
上次参考别人的代码,这次自己用新思路写的,很舒服。#include<stdio.h>#in
c语言 #include i++