c语言判断一个序列是不是另一个的子序列

1 #include <stdio.h> 2 #include <string.h>//添加字符串头文件 3 4 int Subsequence(char s[], char t[]) 5 { 6 int m,n,i,j; 7 n = strlen(s); //n表示序列S的长度 8 m = strlen(t); //m表示序列T的
相关文章
相关标签/搜索