Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

a) Consider using mergesort to sort a sequence of points in the plane, according to their x- coordinate, breaking ties in the merge step by

a) Consider using mergesort to sort a sequence of points in the plane, according to their x- coordinate, breaking ties in the merge step by picking the point in the left list. Prove that the sorted sequence preserves the order of the y-coordinates of points whose x- coordinates are equal. For example, mergesort on the sequence (2, 2), (1, 1), (2, 1), (1, 2) yields (1, 1), (1, 2), (2, 2), (2, 1). (Hint: Use a proof by induction.)

(b) A sequence of points (x1, y1), . . . , (xn, yn) in the plane is nicely sorted if, for all i {1, . . . , n 1}, either (i) xi < xi+1 or (ii) xi = xi+1 and yi yi+1. For example, (1, 2), (2, 1), (3, 0), (3, 1) is nicely sorted but (2, 1), (1, 2), (3, 1), (3, 0) is not (the first/last two points violate conditions (i)/(ii)). Give a simple algorithm to nicely sort a sequence of points in the plane.

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

Learning PostgreSQL

Authors: Salahaldin Juba, Achim Vannahme, Andrey Volkov

1st Edition

178398919X, 9781783989195

More Books

Students also viewed these Databases questions

Question

What tools might be helpful?

Answered: 1 week ago