Write a recursive function that returns a value of 1 if its string argument is a palindrome and zero otherwise. * Note that for the function parameters, you need to accommodate for the shrinking string, so that the string shrinks both from beginning and end after each recursive call. ** Think about the simple cases or base cases. The 2 base cases have conditions that would return 0 and return 1 independently. For the palindrome, create a driver program. First ask the user to enter any string through the keyboard. Then remove all the spaces and punctuations from the string. Also, remove any letter capitalization from the string. Finally, pass the string to the palindrome function through a function call.

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 6PE
icon
Related questions
Question

Write a recursive function that returns a value of 1 if its string argument is a
palindrome and zero otherwise.
* Note that for the function parameters, you need to accommodate for the shrinking
string, so that the string shrinks both from beginning and end after each recursive call.
** Think about the simple cases or base cases. The 2 base cases have conditions that
would return 0 and return 1 independently.
For the palindrome, create a driver program. First ask the user to enter any
string through the keyboard. Then remove all the spaces and punctuations from the
string. Also, remove any letter capitalization from the string. Finally, pass the string to
the palindrome function through a function call. 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Fibonacci algorithm
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