Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given an array of temperatures t1, . . . , tn measured on n days, the weather service would like to compare the biggest increase

Given an array of temperatures t1, . . . , tn measured on n days, the weather service would like to compare the biggest increase in temperature to the biggest decrease in temperature over the given period. Specifically, you would like to compute two numbers: (a) maxup, the maximum over pairs i < j of tj ti and (b) maxdown, the maximum over pairs i < j of ti tj

. For example, for the array [10, 0, 1, 2, 3, 4, 1],

you would compute maxup = 4 and maxdown = 11. (a) (10 points) Give a divide and conquer algorithm that computes these numbers in O(n) time. [Hint: Cut the array into two and make a recursive call on each half. It may be helpful to have the recursive calls pass up some extra information (in addition to maxup and maxdown).]

(b) (10 points) Give a linear-time algorithm for the same problem which makes a single pass through the data and uses only a constant amount of workspace (beyond the space needed to store the input).

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_2

Step: 3

blur-text-image_3

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

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

3319234609, 978-3319234601

More Books

Students also viewed these Databases questions

Question

What is American Polity and Governance ?

Answered: 1 week ago

Question

What is Constitution, Political System and Public Policy? In India

Answered: 1 week ago

Question

What is Environment and Ecology? Explain with examples

Answered: 1 week ago