Question: Write a Point class that implements the Comparable interface. Compare the Points by y-major order; that is, points with smaller y-coordinate values should come before
Write a Point class that implements the Comparable interface. Compare the Points by y-major order; that is, points with smaller y-coordinate values should come before those with higher y-coordinate values. Break ties by comparing x-coordinate values. Use the following Points in your client program. ArrayList points = new ArrayList(); points.add(new Point(22, 12)); points.add(new Point(3, 9)); points.add(new Point(21, 8)); points.add(new Point(4, 8)); points.add(new Point(13, 5));
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
