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:
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
Related questions
Question
100%
Write a str search function in C language.
Expert Solution
Step 1
Given,
- We have to implement a c program which checks whether the pattern string is substring of sourrce string.
- then return the starting index of pattern string from source string.
- Below is the implementation of str_search method in c present.
- Find the below str_search() method in c language.
Step by step
Solved in 4 steps with 3 images
Recommended textbooks for you
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education