Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Data: String T with n lowercase letters Result: The number of palindrome substrings in string T clarr 0 ; for ilarr 0 to n -

Data: String T with n lowercase letters
Result: The number of palindrome substrings in string T
clarr0;
for ilarr0 to n-1 do
for jlarri to n-1 do
substring to j;
if isPalindrome(substring) then
clarrc+1
end
end
end
return c
(a) Prove that this algorithm is correct by providing the following:
i.(2 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 n, for any value of n, the algorithm will always end.
ii.(2 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 correct output. You must prove that when the algorithm is given any input string of length n1, the algorithm correctly outputs the number of palindromes in the string. Assume that the function isPalindrome() always produces correct output.
iii. (4 marks) Compute the time complexity of this algorithm in the worst case. You must explain how you computed the time complexity, and you must give the order of the complexity. Assume that the function isPalindrome() takes only a constant time to execute.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago