-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkr_ex4-1.c
59 lines (49 loc) · 1.19 KB
/
kr_ex4-1.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
#include <stdio.h>
#define MAXLINE 1000
int mygetline(char line[], int maxline);
int strindex(char source[], char searchfor[]);
char pattern[] = "cake";
/* find all lines matching pattern, searching backwards */
int main()
{
char line[MAXLINE];
int found = 0;
int pos;
while (mygetline(line, MAXLINE) > 0)
if ((pos = strindex(line, pattern)) >= 0) {
printf("(%d)%s", pos, line);
found++;
}
return found;
}
/* mygetline: get line into s, return length */
int mygetline(char s[], int lim)
{
int c, i;
i = c = 0;
while (--lim > 0 && (c=getchar()) != EOF && c != '\n')
s[i++] = c;
if (c == '\n')
s[i++] = c;
s[i] = '\0';
return i;
}
/* strindex: return index of t is s, -1 if none */
int strindex(char s[], char t[])
{
int i, j, k;
int lens, lent;
for (lens=0; s[lens] != '\0'; lens++)
;
for (lent=0; t[lent] != '\0'; lent++)
;
if (lens < lent)
return -1;
for (i = lens - lent; s[i] != '\0'; --i) {
for (j=i, k=0; t[k]!='\0' && s[j]==t[k]; j++, k++)
;
if (k > 0 && t[k] == '\0')
return i;
}
return -1;
}