已知两个由正整数组成的无序序列A、B,每个序列的元素个数未知,但至少有一个元素。你的任务是判断序列B是否是序列A的连续子序列。假设B是“1 9 2 4 18”,A是“33 64 1 9 2 4 18 7”,B是A的连续子序列;假设B是“1 9 2 4 18”,A是“33 1 9 64 2 4 18 7”,B不是A的连续子序列。
输入格式: 依次输入两个乱序的正整数序列A、B,序列中元素个数未知,但每个序列至少有一个元素,并以输入“-1”结束(-1不算序列中元素),每个序列占一行。两个数列的长度均不超过1000。
输入保证合法,且所有整数均可用int存储。
输出格式: 如果序列B是序列A的连续子序列,则输出“ListB is the sub sequence of ListA.”,否则输出“ListB is not the sub sequence of ListA.”。
输入样例: 5 4 3 2 1 -1 3 2 1 -1 输出样例: ListB is the sub sequence of ListA.
我的代码:
#include<stdio.h>
main()
{
int A[1000],B[1000];
int a,b;
int i,j;
int sub=0;
scanf("%d",&a);
for(i=0;a!=-1;i++)
{
A[i]=a;
scanf("%d",&a);
}
int lenA=i+1;
scanf("%d",&b);
for(i=0;b!=-1;i++)
{
B[i]=b;
scanf("%d",&b);
}
int lenB=i+1;
for(i=0;i<lenA;i++)
{
if(A[i]==B[0])
{
int k=i;
for(j=1,k=i+1;j<lenB;j++,k++)
{
if(B[j]==A[k]);
else break;
}
if(j==lenB&&B[j-1]==A[k-1])
sub=1;
}
}
if(sub)
printf("ListB is the sub sequence of ListA.");
else printf("ListB is not the sub sequence of ListA.");
return 0;
}