FUNCTION: str_search DESCRIPTION: takes two C strings: a "source string" s[] and a "pattern string" and determines if the given pattern is a substring of s. If the pattern is a substring of s, the index into s where the first match occurs is returned (note that the pattern may occur multiple times in s). Otherwise, -1 is returned (note that a match could start at index 0, so we can't use 0 for "false"). Estimated Difficulty: LEVEL 3 Examples: source string s pattern return-value "abcd" "ab" "abcd" "aa" -1 "abc bc d" "bc" 1 "abcd" "bcd" "abcd" "bcd" "abracadabra" "dab" 6. "abc" "abc" "abc" "abcd" NOTES: every string is a substring of itself if the pattern is longer than the source string, of course there can be no match. - remember there may be multiple matches - you want the index of the first match. You may use the strlen library function (but you don't really need it) but all other library functions RULES:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

Write a str search function in C language.

* FUNCTION:
str_search
takes two C strings: a "source string" s[] and
a "pattern string" and determines if the given
DESCRIPTION:
pattern is a substring of s.
If the pattern is a substring of s, the index into s where
the first match occurs is returned (note that the
pattern may occur multiple times in s).
Otherwise, -1 is returned (note that a match could
start at index 0, so we can't use e for "false").
Estimated Difficulty: LEVEL 3
Examples:
source string s
pattern
return-value
"ab"
"aa"
"abcd"
"abcd"
-1
"abc bc d"
"bc"
1.
"abcd"
"bcd"
1
"abcd"
"bcd"
1
"abracadabra"
"dab"
"abc"
"abc"
"abc"
"abcd"
-1
NOTES:
every string is a substring of itself
if the pattern is longer than the source string,
of course there can be no match.
remember there may be multiple matches
you want
the index of the first match.
You may use the strlen library function (but you don't
really need it) but all other library functions
RULES:
operating on strings are off limits!
*/
int str_search(char *s, char *pattern);
Transcribed Image Text:* FUNCTION: str_search takes two C strings: a "source string" s[] and a "pattern string" and determines if the given DESCRIPTION: pattern is a substring of s. If the pattern is a substring of s, the index into s where the first match occurs is returned (note that the pattern may occur multiple times in s). Otherwise, -1 is returned (note that a match could start at index 0, so we can't use e for "false"). Estimated Difficulty: LEVEL 3 Examples: source string s pattern return-value "ab" "aa" "abcd" "abcd" -1 "abc bc d" "bc" 1. "abcd" "bcd" 1 "abcd" "bcd" 1 "abracadabra" "dab" "abc" "abc" "abc" "abcd" -1 NOTES: every string is a substring of itself if the pattern is longer than the source string, of course there can be no match. remember there may be multiple matches you want the index of the first match. You may use the strlen library function (but you don't really need it) but all other library functions RULES: operating on strings are off limits! */ int str_search(char *s, char *pattern);
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education