-
Notifications
You must be signed in to change notification settings - Fork 0
/
prog4.c
98 lines (92 loc) · 1.91 KB
/
prog4.c
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// #include <stdio.h>
// #include <stdlib.h>
// #include <string.h>
// #define SIZE 255
// int Table[SIZE];
// void shiftable(char P[])
// {
// int i, m;
// m = strlen(P);
// for (i = 0; i < SIZE; i++)
// Table[i] = m;
// for (i = 0; i < m - 1; i++)
// Table[P[i]] = m - i - 1;
// }
// int horsepool(char T[], char P[])
// {
// int i, j, k, m, n;
// n = strlen(T);
// m = strlen(P);
// i = m - 1;
// while (i <= n - 1)
// {
// k = 0;
// while (k < m && P[m - 1 - k] == T[i - k])
// k++;
// if (k == m)
// return i - m + 1;
// else
// i = i + Table[T[i]];
// }
// return -1;
// }
// int main()
// {
// char T[SIZE], P[SIZE], value;
// printf("Enter the text\n");
// gets(T);
// printf("Enter the pattern\n");
// gets(P);
// shiftable(P);
// value = horsepool(T, P);
// if (value == -1)
// printf("String not found\n");
// else
// printf("\nThe strinf is found at %d", value + 1);
// }
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define SIZE 256
int Table[SIZE];
void shiftTable(char P[]){
int i,m;
m=strlen(P);
for(i=0;i<SIZE;i++){
Table[i]=m;
}
for(i=0;i<m-1;i++)
Table[P[i]]=m-1-i;
}
int horsepool(char T[],char P[]){
shiftTable(P);
int m,n,i,k=0;
n=strlen(T);
m=strlen(P);
i=m-1;
while(i<=n-1){
k=0;
while(k<m && T[i-k]==P[m-k-1])
k=k+1;
if(k==m)
return i-m+1;
else
i=i+Table[T[i]];
}
return -1;
}
int main(){
char T[100],P[100];
printf("Enter the text\n");
gets(T);
printf("Enter the pattern to be found\n");
gets(P);
int value=horsepool(T,P);
if(value==-1){
printf("\nThe pattern is not found\n");
}
else{
printf("\nPattern found at %d position",value+1);
}
return 0;
}