Question

In: Computer Science

TrackMinMax i want the generic version based on java For this lab, you will create a...

TrackMinMax
i want the generic version based on java

For this lab, you will create a generic version of the IntTrackMinMax class you wrote in a previous lab, called TrackMinMax. The API is:

Function Signature Description
constructor TrackMinMax() constructor
check void check(T i) compares i to the current minimum and maximum values and updates them accordingly
getMin T getMin() returns the minimum value provided to check() so far
getMax T getMax() returns the maximum value provided to check() so far
toString String toString() returns the string "[min,max]"
As before, your getMax() and getMin() functions may assume that check() has been called at least once. If getMin() or getMax() is called before the first call to check(), the results are undefined.

Your code will need to use the compareTo() function, so you need to be sure to limit your type parameter to only types that implement the Comparable<T> interface.

Hints

You can look at my test code by clicking "Current File" above the editing window, and selecting "TestTrackMinMax". All the test program does is read integers from standard input, and calls check() with each one. It then prints out the minimum and maximum integer that was read, and then prints the object itself (which tests toString()). For example, enter this data as the input:

0 5 -5 3 -8
When you run it with that data, it should print

Minimum: -8
Maximum: 5
[-8,5]
For grading, tour code will be tested with both Integer and String as the type parameters. If you want to test with strings in develop mode, you will need to provide the word "String" (without the quotes) as a command line parameter.

Note that because you don't know what the min/max values might be for the generic type parameter, you'll need to find some other way to initialize the min/max variables. Think about the fact that the type parameter must be a reference type, and that reference types are automatically initialized to a certain default value. You can check for that default value in your check() function to determine whether it is the first call to check(), and act accordingly.

Solutions

Expert Solution

TrackMinMax.java (code to copy)

//declare generic classs whose elements are of comparable type
class TrackMinMax<T extends Comparable<T>>{
    //declare member variables to store current min and max
    private T cur_min;
    private T cur_max;
    //this variable tells if the check function has been called once or not
    private static boolean is_checked = false;
    //constructor
    public TrackMinMax(){}
    //this method updates cur_min and cur_max
    public void check(T i){
        //if the method has never been called, directly update min and max values
        if(!is_checked){
            is_checked=true;
            cur_min=i;
            cur_max=i;
        }else{
            //update cur_min
            if(cur_min.compareTo(i)>0){
                cur_min=i;
            }
            //update cur_max
            if(cur_max.compareTo(i)<0){
                cur_max=i;
            }
        }
    }
    //member variable to get cur_min
    public T getMin(){
        return cur_min;
    }
    //member variable to get cur_max
    public T getMax(){
        return cur_max;
    }
    //member variable to print the object
    public String toString(){
        return "["+cur_min+","+cur_max+"]";
    }
}

TrackMinMax.java (code screenshot)

Test.java (code to copy)

import java.util.*;
import java.text.*; 
class Test{
    public static void main(String[] args) throws Exception{
        //create Scanner object to read from the user
        Scanner sc = new Scanner(System.in);
        //read a line
        String input = sc.nextLine();
        //store this line in the scanner so that we can read numbers/string separated by spaces
        sc = new Scanner(input);
        //check if command line argument was provided and the value was String
        if(args.length==1 && args[0].equals("String")){
            //we have to implement string version of the program
            TrackMinMax<String> tmm = new TrackMinMax<String>();
            //variable to store each word
            String val;
            //read until line ends
            while(sc.hasNext()){
                //read next words
                val=sc.next();
                //call check method
                tmm.check(val);
            }
            //print the result in the format given in the problem statement
            System.out.println("Minimum: "+tmm.getMin());
            System.out.println("Maximum: "+tmm.getMax());
            System.out.println(tmm);
        }else{
            //we have to implement integer version of the program
            TrackMinMax<Integer> tmm = new TrackMinMax<Integer>();
            //variable to store each integer
            Integer val;
            //read until line ends
            while(sc.hasNextInt()){
                //read next integer
                val=sc.nextInt();
                //call check method
                tmm.check(val);
            }
            //print the result in the format given in the problem statement
            System.out.println("Minimum: "+tmm.getMin());
            System.out.println("Maximum: "+tmm.getMax());
            System.out.println(tmm);
        }
    }   
}

Test.java (code screenshot)

Sample Input/Output Screenshot 1 when called like - java Test

Sample Input/Output Screenshot 2 when called like - java Test String

Let me know in the comments if you have any doubts.
Do leave a thumbs up if this was helpful.


Related Solutions

you will create a program with Java to implement a simplified version of RSA cryptosystems. To...
you will create a program with Java to implement a simplified version of RSA cryptosystems. To complete this project, you may follow the steps listed below (demonstrated in Java code) to guide yourself through the difficulties. Step I Key-gen: distinguish a prime number (20 pts) The generation of RSA's public/private keys depends on finding two large prime numbers, thus our program should be able to tell if a given number is a prime number or not. For simplicity, we define...
I want you guys to rewrite this lab procedure, and it is fine if it was...
I want you guys to rewrite this lab procedure, and it is fine if it was shorter than this. An air track was fitted with two photocell bridges, one on each side of the collision region. Each bridge was operating in a gate mode timer that allows the collection of time intervals before and after collision. To ensure that friction and gravity have minimal effects, the track was leveled. Before starting the experiment, we ensured that loss in velocity was...
Having some trouble with this Java Lab (Array.java) Objective: This lab is designed to create an...
Having some trouble with this Java Lab (Array.java) Objective: This lab is designed to create an array of variable length and insert unique numbers into it. The tasks in this lab include: Create and Initialize an integer array Create an add method to insert a unique number into the list Use the break command to exit a loop Create a toString method to display the elements of the array Task 1: Create a class called Array, which contains an integer...
I. At the beginning, create a folder named "test" and add the folder into the version...
I. At the beginning, create a folder named "test" and add the folder into the version control tool tracking system. Then create one file named "001" under this folder. Commit any change if necessary. II. Next, add another file named "002" in the same folder and commit the change ("adding") in the version control tool. III. Followed by adding that file, create a branch (namely, "branch-A") in the version control tool and make some changes to the contents in file...
i just need the Polygon class Shapes In this lab you will create an interface, and...
i just need the Polygon class Shapes In this lab you will create an interface, and then implement that interface in three derived classes. Your interface will be called Shape, and will define the following functions: Return Type Name Parameters Description double area none computes the area of the shape double perimeter none computes the perimeter of the shape Point2d center none computes the center of the shape You will then create 3 implementations of this interface: Rectangle, Circle, and...
can you please create the code program in PYTHON for me. i want to create array...
can you please create the code program in PYTHON for me. i want to create array matrix Nx1 (N is multiple of 4 and start from 16), and matrix has the value of elements like this: if N = 16, matrix is [ 4 4 4 4 -4 -4 -4 -4 4 4 4 4 -4 -4 -4 -4] if N = 64, matrix is [8 8 8 8 8 8 8 8 -8 -8 -8 -8 -8 -8 -8...
Create a generic Linked List that does NOT use the Java library linked list. Make sure...
Create a generic Linked List that does NOT use the Java library linked list. Make sure it contains or access a subclass named Node (also Generic). And has the methods: addFirst(), addLast(), add(), removeFirst(), removeLast() and getHead(). In a separate Java class provide a main that creates an instance of your LinkedList class that creates an instance of your LinkedList that contains String types. Add the five names (you pick them) to the list and then iterate through the list...
I. General Description In this assignment, you will create a Java program to read undergraduate and...
I. General Description In this assignment, you will create a Java program to read undergraduate and graduate students from an input file, sort them, and write them to an output file. This assignment is a follow up of assignment 5. Like assignment 5, your program will read from an input file and write to an output file. The input file name and the output file name are passed in as the first and second arguments at command line, respectively. Unlike...
I. General Description In this assignment, you will create a Java program to read undergraduate and...
I. General Description In this assignment, you will create a Java program to read undergraduate and graduate students from an input file, and write them in reverse order to an output file. 1. The input file name and the output file name are passed in as the first and second arguments at command line, respectively. For example, assume your package name is FuAssign5 and your main class name is FuAssignment5, and your executable files are in “C:\Users\2734848\eclipse-workspace\CIS 265 Assignments\bin”. The...
I. General Description In this assignment, you will create a Java program to read undergraduate and...
I. General Description In this assignment, you will create a Java program to read undergraduate and graduate students from an input file, sort them, and write them to an output file. This assignment is a follow up of assignment 5. Like assignment 5, your program will read from an input file and write to an output file. The input file name and the output file name are passed in as the first and second arguments at command line, respectively. Unlike...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT