Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following problem. Two weather stations periodically take temperature data samples. Each data point consists of a pair, (d, t) where d is the

Consider the following problem. Two weather stations periodically take temperature data samples. Each data point consists of a pair, (d, t) where d is the date/time of the sample and t is the temperature. The two weather stations are not necessarily synchronized, however. The collections of data are not necessarily in chronological order and may or may not contain samples on the same time(s) or the same temperature(s). The problem is to detect data anomalies in which the two stations differ in temperature.

(a) Consider the following algorithm that solves this problem.

input : Two lists of date/temperature data,

A = {(d1, t1), . . .(dn, tn)} and B = {(D1, T1), . . .(Dn, Tn)} output: All data points that differ. for i = 1, . . . n do for j = 1, . . . n do if di = Dj then if ti 6= Tj then output ((di , ti),(Dj , Tj )) end end end end Analyze this algorithm using the 5-step process and give an asymptotic characterization of the algorithm.

(b) How well would this algorithm perform in practice? Suppose our machine can process data at 1 million pairs per second. How long would it take to execute this algorithm on the following input sizes? 1. n = 100 2. n = 10, 000 3. n = 1, 000, 000 4. n = 10, 000, 000 5. n = 1, 000, 000, 000

(c) Can you do better? Design a better algorithm and give a full analysis. Indicate how fast your algorithm would run on the machine that can process 1 million pairs per second.

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

Databases Illuminated

Authors: Catherine Ricardo

2nd Edition

1449606008, 978-1449606008

Students also viewed these Databases questions