Download Problem Set 4 (due 3/5).

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Microsoft Jet Database Engine wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Clusterpoint wikipedia , lookup

Functional Database Model wikipedia , lookup

Encyclopedia of World Problems and Human Potential wikipedia , lookup

Object-relational impedance mismatch wikipedia , lookup

Database model wikipedia , lookup

Relational model wikipedia , lookup

Transcript
Introduction to Algorithms
CS 482 Spring 2004
Problem Set 4
Due March 5, 2004
Reading: Sections 4.1-4.3, 4.5.
(1) (This is Problem 1 at the end of Chapter 4.) You are interested in analyzing some
hard-to-obtain data from two separate databases. Each database contains n numerical values
— so there are 2n values total — and you may assume that no two values are the same.
You’d like to determine the median of this set of 2n values, which we will define here to be
the nth smallest value.
However, the only way you can access these values is through queries to the databases.
In a single query, you can specify a value k to one of the two databases, and the chosen
database will return the k th smallest value that it contains. Since queries are expensive, you
would like to compute the median using as few queries as possible.
Give an algorithm that finds the median value using at most O(log n) queries.