Task Given a string str and one of its character ch, the coverage of ch is computed as the number of elements between its leftmost and rightmost appearances (inclusive). For example, if str="babaac" and ch='a' then its leftmost and rightmost appearances occur at indices 1 and 4, respectively. Thus, the coverage of ch is 4. In this example, if ch= 'b' then its coverage is 3 since its leftmost and rightmost appearances occur at indices 0 and 2. Also, if ch='c', its coverage is 1. Write a function named findMaxCoverage that ● takes a string (str) and its size (n) as given below int findMaxCoverage (char str[], int n) . returns the maximum coverage in str. For example, ● if str "babaac", then the call findMaxCoverage (str, 6) should return 4, since this is the maximum of all character coverages found in the string, i.e., coverage of 'a' is 4, coverage of 'b' is 3, coverage of 'c' is 1. • if str="abcdefg", then the call findMaxCoverage (str, 7) the function should return 1 since all characters have coverage 1. [NOTE] Do NOT change the function return type or its parameters. . Your solution must be prepared using file template.c

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
Task
Given a string str and one of its character ch, the coverage of ch is computed as the number of
elements between its leftmost and rightmost appearances (inclusive). For example, if str="babaac"
and ch='a' then its leftmost and rightmost appearances occur at indices 1 and 4, respectively. Thus, the
coverage of ch is 4. In this example, if ch='b' then its coverage is 3 since its leftmost and rightmost
appearances occur at indices 0 and 2. Also, if ch='c', its coverage is 1.
Write a function named findMaxCoverage that
. takes a string (str) and its size (n) as given below
int findMaxCoverage (char str[], int n)
. returns the maximum coverage in str.
For example,
.
if str "babaac", then the call findMaxCoverage (str, 6) should return 4, since this is the
maximum of all character coverages found in the string, i.e., coverage of 'a' is 4, coverage of
'b' is 3, coverage of 'c' is 1.
• if str="abcdefg", then the call findMaxCoverage (str, 7) the function should return 1
since all characters have coverage 1.
. [NOTE] Do NOT change the function return type or its parameters.
● Your solution must be prepared using file template.c
Transcribed Image Text:Task Given a string str and one of its character ch, the coverage of ch is computed as the number of elements between its leftmost and rightmost appearances (inclusive). For example, if str="babaac" and ch='a' then its leftmost and rightmost appearances occur at indices 1 and 4, respectively. Thus, the coverage of ch is 4. In this example, if ch='b' then its coverage is 3 since its leftmost and rightmost appearances occur at indices 0 and 2. Also, if ch='c', its coverage is 1. Write a function named findMaxCoverage that . takes a string (str) and its size (n) as given below int findMaxCoverage (char str[], int n) . returns the maximum coverage in str. For example, . if str "babaac", then the call findMaxCoverage (str, 6) should return 4, since this is the maximum of all character coverages found in the string, i.e., coverage of 'a' is 4, coverage of 'b' is 3, coverage of 'c' is 1. • if str="abcdefg", then the call findMaxCoverage (str, 7) the function should return 1 since all characters have coverage 1. . [NOTE] Do NOT change the function return type or its parameters. ● Your solution must be prepared using file template.c
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Methods of StringBuilder class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
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