Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question
31. Need C, C++, Java, Python, or Perl code for the below question. Important: Do not copy codes from prepinsta.com.
Question: A furnishing company is manufacturing a new collection of curtains. The curtains are
of two colors aqua(a) and black (b). The curtains color is represented as a string(str) consisting of
a's and b's of length N. Then, they are packed (substring) into L number of curtains in each box.
The box with the maximum number of 'aqua' (a) color curtains is labeled. The task here is to find
the number of 'aqua' color curtains in the labeled box.
Note:
If 'L' is not a multiple of N, the remaining number of curtains should be considered as a substring
too. In simple words, after dividing the curtains in sets of 'L', any curtains left will be another
set(refer example 1)
Example 1:
Input:
bbbaaababa -> Value of str
3 > Value of L
Output:
3 Maximum number of a's
Explanation:
From the input given above.
Dividing the string into sets of 3 characters each
Set 1: {b,b,b}
Set 2: {a,a,a}
Set 3:{b,a,b}
Set 4: {a} -> leftover characters also as taken as another set
Among all the sets, Set 2 has more number of a's. The number of a's in set 2 is 3.
Hence, the output is 3.
expand button
Transcribed Image Text:Question: A furnishing company is manufacturing a new collection of curtains. The curtains are of two colors aqua(a) and black (b). The curtains color is represented as a string(str) consisting of a's and b's of length N. Then, they are packed (substring) into L number of curtains in each box. The box with the maximum number of 'aqua' (a) color curtains is labeled. The task here is to find the number of 'aqua' color curtains in the labeled box. Note: If 'L' is not a multiple of N, the remaining number of curtains should be considered as a substring too. In simple words, after dividing the curtains in sets of 'L', any curtains left will be another set(refer example 1) Example 1: Input: bbbaaababa -> Value of str 3 > Value of L Output: 3 Maximum number of a's Explanation: From the input given above. Dividing the string into sets of 3 characters each Set 1: {b,b,b} Set 2: {a,a,a} Set 3:{b,a,b} Set 4: {a} -> leftover characters also as taken as another set Among all the sets, Set 2 has more number of a's. The number of a's in set 2 is 3. Hence, the output is 3.
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education