beyondgrader.com Logo
DemoBrowseAboutTeamLogin

Comparable Max

Geoffrey Challen // 2020.10.0

On this homework problem you'll implement a completely generic version of an algorithm to find the maximum of an array. Unlike in the past, when our algorithm only worked for int[] or double[], this version will work on any objects that are comparable, specifically any object that implements the Comparable interface.

Create a public class named Max with a single class method named max. max should accept an array of objects that implement Comparable and return the maximum. Assert that the array is not null or empty.

As a reminder, compareTo returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.