Note: C++ Programming Answer Required The annual snake festival is upon us and all the snakes of the kingdom have gathered to participate in the parade. The chef was tasked with reporting on the parade, so he decided to watch all the snakes first. When he sees the snake first, it will be his head, so he marks the "H". Snakes are long, and when they see the snake finally scurry away, they mark its tail with a "T". In the interim, when the snake is moving around it, or in the time between one snake and the next snake, it marks a '.'. Since the snakes come in a procession and one by one, a valid message would be something like "..H..T...HTH....T.", or "...", or "HT", while "T ...H..H.T", "H..T..H", "H..H..T..T" would be invalid messages (see explanation below). Formally, a snake is represented by an 'H' followed by some (possibly null) '.' and then 'T'. A valid message is one that begins with the (probably zero-length) string '.' and then some (possibly zero) snakes, with some '.'s in between, and finally some (possibly zero) '.'s. The chef was devouring the festival food and was very sleepy. So his message may be invalid. You have to help him find out if his message is valid or not. Possible input 1 18 ..H..T...HTH....T. Required Output Valid

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 1TF
icon
Related questions
Question
Note: C++ Programming Answer Required
The annual snake festival is upon us and all the snakes of the kingdom have
gathered to participate in the parade. The chef was tasked with reporting on the
parade, so he decided to watch all the snakes first. When he sees the snake first, it
will be his head, so he marks the "H". Snakes are long, and when they see the
snake finally scurry away, they mark its tail with a "T". In the interim, when the
snake is moving around it, or in the time between one snake and the next snake, it
marks a '.'.
Since the snakes come in a procession and one by one, a valid message would be
something like "..H..T...HTH....T.", or "...", or "HT", while "T ...H..H.T", "H..T..H",
"H..H..T..T" would be invalid messages (see explanation below).
Formally, a snake is represented by an 'H' followed by some (possibly null) '.' and
then 'T'. A valid message is one that begins with the (probably zero-length) string
'.' and then some (possibly zero) snakes, with some '.'s in between, and finally
some (possibly zero) '.'s.
The chef was devouring the festival food and was very sleepy. So his message
may be invalid. You have to help him find out if his message is valid or not.
Possible input
1
18
..H..T...HTH....T.
Required Output
Valid
Transcribed Image Text:Note: C++ Programming Answer Required The annual snake festival is upon us and all the snakes of the kingdom have gathered to participate in the parade. The chef was tasked with reporting on the parade, so he decided to watch all the snakes first. When he sees the snake first, it will be his head, so he marks the "H". Snakes are long, and when they see the snake finally scurry away, they mark its tail with a "T". In the interim, when the snake is moving around it, or in the time between one snake and the next snake, it marks a '.'. Since the snakes come in a procession and one by one, a valid message would be something like "..H..T...HTH....T.", or "...", or "HT", while "T ...H..H.T", "H..T..H", "H..H..T..T" would be invalid messages (see explanation below). Formally, a snake is represented by an 'H' followed by some (possibly null) '.' and then 'T'. A valid message is one that begins with the (probably zero-length) string '.' and then some (possibly zero) snakes, with some '.'s in between, and finally some (possibly zero) '.'s. The chef was devouring the festival food and was very sleepy. So his message may be invalid. You have to help him find out if his message is valid or not. Possible input 1 18 ..H..T...HTH....T. Required Output Valid
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
ADT and 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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr