-
Notifications
You must be signed in to change notification settings - Fork 0
/
mohu.cpp
54 lines (51 loc) · 1.1 KB
/
mohu.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int mohu(char* key,char* str)
{
typedef struct nodde
{
char son[30];
}nodde;
int i,j,k=0,l=0,m=0;
//f=1为符合筛选条件
int f=0;
//N1为str的长度 N2为str连续子串的个数
int N1=0,N2=0;
N1=strlen(str);
/*计算连续子串的个数*/
for(i=1;i<=N1;i++){
N2+=i;
}
/*计算连续子串的个数*/
//i控制子字符串的长度
//j控制赋值
//k控制新的线性结构b的下标
//l控制子数组的首项在原数组中的位置
//m控制即将用作赋值的str的下标
nodde *b=(nodde *)malloc(sizeof(nodde)*N2);
for(i=1;i<=N1;i++){
l=0;
/*while循环内为给一个子字符串数组赋值*/
while(1){
m=l;
for(j=0;j<i;j++){
b[k].son[j]=str[m];
m++;
}
l++;
k++;
if(m==N1){
break;
}
}
}
//挨个比对
for(i=0;i<N2;i++)
if(strcmp(key,b[i].son)==0){
f=1;
break;
}
free(b);
return f;
}