代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <string.h>
int Sunday(char *s, int Ls, char *t, int Lt);
int main(void)
{ // 11100100 10111101 10100000
//unicode 你 100111101100000 (4f60)
char t[] = u8"你",
s[] = u8"你好";
printf("%d\n", Sunday(s, strlen(s), t, strlen(t)));
return 0;
}
int Sunday(char *s, int Ls, char *t, int Lt)
{
int si = 0, ti = 0;
if (Ls <= 0 || Lt <= 0 || Ls < Lt)
return -1;
while (si < Ls)
{
while (ti < Lt && t[ti] == s[si])
{
ti++;
si++;
}
if (ti == Lt)
return si - ti;
else
{
si += Lt - ti;
ti = 0;
while (ti < Lt && s[si] != t[ti])
ti++;
if (ti == Lt)
{
si++;
ti = 0;
}
else
{
ti++;
si++;
}
}
}
if (si >= Ls)
return -1;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。