Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following algorithm for the problem of counting the num - ber of palindromes in a given string T of length n 1 .
Consider the following algorithm for the problem of counting the num
ber of palindromes in a given string of length The function
isPalindrome takes a string input and return True if the input string
is a palindrome and False otherwise.
Data: String with lowercase letters
Result: The number of palindrome substrings in string
clarr;
for ilarr to do
for jlarri to do
substring to ;
if isPalindromesubstring then
clarrc;
end
end
end
return
a Prove that this algorithm is correct by providing the following:
i marks Show that the algorithms terminates.
Note: To prove that the algorithm terminates you cannot just
give an example and show that the algorithm terminates on it;
instead you must prove that when the algorithm is given any
input string of length for any value of the algorithm will
always end.
ii marks Show that the algorithm always produces the correct
answer.
Note: To prove that the algorithm is correct you cannot just
give an example and show that the algorithm computes the cor
rect output. You must prove that when the algorithm is given
any input string of length the algorithm correctly out
puts the number of palindromes in the string. Assume that the
function isPalindrome always produces correct output.
iii. marks Compute the time complexity of this algorithm in the
worst case. You must explain how you computed the time com
plexity, and you must give the order of the complexity. Assume
that the function isPalindrome takes only a constant time to
execute.
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