Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

( Closest pair of points ) Section 22.8 introduced the following algorithm for finding the closest pair of points using a divide-and-conquer approach: Step 1:

(Closest pair of points) Section 22.8 introduced the following algorithm for finding the closest pair of points using a divide-and-conquer approach:

Step 1: Sort the points in increasing order of x-coordinates. For the points with the same x-coordinates, sort on y-coordinates. The result should be a sorted collection of points denoted by S.

Step 2: Divide S into two subsets, S1 and S2, of equal size about the midpoint of the sorted list S. Include the midpoint in S1. Recursively find the closest pair in S1 and S2. Let d1 and d2 denote the distance of closest pairs in the two subsets, respectively.

Step 3: Find the closest pair between a point in S1 and a point in S2 and denote the distance between them as d3. The closest pair is the one with distance equal to the minimum of {d1, d2, d3}.

The Algorithm for Obtaining stripL and stripR is:

for each point p in pointsOrderedOnY

if (p is in S1 and mid.x - p.x <= d)

append p to stripL;

else if (p is in S2 and p.x - mid.x <= d)

append p to stripR;

Algorithm for Finding the Closest Pair in Step 3

d = min(d1, d2);

r = 0; // r is the index of a point in stripR

for (each point p in stripL) {

// Skip the points in stripR below p.y - d

while (r < stripR.length && q[r].y <= p.y - d)

r++;

let r1 = r;

while (r1 < stripR.length && |q[r1].y - p.y| <= d) {

// Check if (p, q[r1] is a possible closest pair

if (distance(p, q[r1]) < d) {

d = distance(p, q[r1]);

(p, q[r1]) is now the current closest pair;

}

r1 = r1 + 1;

}

}

Implement the algorithm to meet the following requirements:

  • Define the classes Point and CompareY in the same way as your program from Chapter 20 for sorting points on both the x and y coordinates.
  • Define a class named Pair with data fields p1 and p2 to represent two points and a method named getDistance() that returns the distance between the two points.
  • Implement the following methods:

/** Return the distance of the closest pair of points */

public static Pair getClosestPair(double [ ] [ ] points)

/** Return the distance of the closest pair of points */

public static Pair getClosestPair(Point [ ] points)

/** Return the distance of the closest pair of points in pointsOrderedOnX[low, high]. This is a recursive method. pointsOrderedOnX and pointsOrderedOnY are not changed in the subsequent recursive calls.*/

public static Pair distance(Point [ ] pointsOrderedOnX, int low, int high, Point [ ] pointsOrderedOnY)

/** Compute the distance between two points p1 and p2 */

public static double distance(Point p1, Point p2)

/** Compute the distance between points (x1, y1) and (x2, y2) */

public static double distance(double x1, double y1, double x2, double y2)

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

Database 101

Authors: Guy Kawasaki

1st Edition

0938151525, 978-0938151524

More Books

Students also viewed these Databases questions

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago