Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 4.3. A palindrome is a word (string) that reads the same from left to right as from right to left. For example, the string
Exercise 4.3. A palindrome is a word (string) that reads the same from left to right as from right to left. For example, the string "NeverOddOrEven" is a palindrome. Every string can be partitioned in a number of palindromes. For example, the string "none" could be partitioned into four palindromes: "n" + "o" + "n" + "e", but of course, we could also partition it into only two palindromes: "non" + "e". Given a string s, we are interested in finding the minimum number of palindromes from which we can construct s. For the string "none", the minimum number is 2 and for the string "bobseesanna" the minimum number of palindromes would be three: "bob" + "sees" + "anna". a. Describe a dynamic programming algorithm that, given a string s, finds the minimum number of palindromes from which s can be constructed. You are not required to find the sequence of palindromes itself, only the number of palindromes that are needed. 6 Give a good description in words of the function(s) that you want to compute. Show how to initialize them, how to recursively compute their values, and where to find the optimal solution value. b. Analyze the running time of your algorithm. Is this bounded by a polynomial in the size of the input
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started