#include<stdio.h> #include<string.h> #include<stdlib.h> void reveser_str(char* start,char*end)//字符串整体逆序 { while (start < end) { char tmp = *start; *start = *end; *end = tmp; start++; end--; } } int spin(char* s1, char* s2) { int len=strlen(s1); char*start = s1; //abcdeefeg\0 char*end = s1 + len - 1; //gefeedcba\0 egabcdeef efegabcde reveser_str(start,end); //efegabcde\0 char* eos = start; while (*eos != '\0') { if(*eos == *s2) { reveser_str(start, eos); reveser_str(eos+1, end); if (strcmp(s1, s2) == 0) { return 1; } else { reveser_str(start, eos); reveser_str(eos + 1, end); } } eos++; } return 0; } int main() { char s1[] = "abcdefef"; char s2[] = "cdefefab"; int ret=spin(s1, s2); if (ret == 1) { printf("yes"); } else { printf("no"); } system("pause"); return 0; }
判断一个字符串是否为另外一个字符串旋转之后的字符串
精选 转载红玲chehlling 博主文章分类:Daily practice
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
字符函数和字符串函数
与字符串相关的函数
赋值 无符号整数 字符串 -
判断一个字符串是否为回文字符串
回文字符串
回文字符串 -
java中一个字符串是另外一个字符串的字串
java中一个字符串是另外一个字符串的字串
Java 字符串 微信 人工智能 大数据