Question

2. Consider an ADT list of integers. Write a method public int computeMin (IntegerListinterface alist) that computes and retu
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Solution:

public int computeMin(List<Integer> alist){
  
if (alist.size()==0 || alist == null) //checking whether list is empty or contains a null value
return Integer.MAX_VALUE;
  
List<Integer> sortlist = new ArrayList<>();
sortlist=alist;
Collections.sort(sortlist); //sorting the list

return sortlist.get(0); //after sorting the minimum element will be at index 0
}

Add a comment
Know the answer?
Add Answer to:
2. Consider an ADT list of integers. Write a method public int computeMin (IntegerListinterface alist) that...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Fix Java Code Question: Coding AList Get Position Write a method for the AList class that...

    Fix Java Code Question: Coding AList Get Position Write a method for the AList class that returns the first position of a given object in the list with the method header below. public int getPosition(T anObject) Answer: public int getPosition(T anObject) { int position = 0; for (int i = 0; i < length; i++) if (list[i].equals(anObject)) { position = i + 1; } return position; }

  • Complete an Array-Based implementation of the ADT List including a main method and show that the...

    Complete an Array-Based implementation of the ADT List including a main method and show that the ADT List works. Draw a class diagram of the ADT List __________________________________________ public interface IntegerListInterface{ public boolean isEmpty(); //Determines whether a list is empty. //Precondition: None. //Postcondition: Returns true if the list is empty, //otherwise returns false. //Throws: None. public int size(); // Determines the length of a list. // Precondition: None. // Postcondition: Returns the number of items in this IntegerList. //Throws: None....

  • Given an array of integers shown below, int myArray()={1,2,3,4,5,6,7,8,9,10) Complete the following method that computes and...

    Given an array of integers shown below, int myArray()={1,2,3,4,5,6,7,8,9,10) Complete the following method that computes and returns the average of all the values of the array. Paragraph B I U public static double averageOfArray(int[] myArray) {

  • JAVA 1.Write a static method named getMaxEven(numbers) which takes an array of positive integers as a...

    JAVA 1.Write a static method named getMaxEven(numbers) which takes an array of positive integers as a parameter. This method calculates and returns the largest even number in the list. If there are no even numbers in the array, the method should return 0. You can assume that the array is not empty. For example: Test Result int[] values = {1, 4, 5, 9}; System.out.println(getMaxEven(values)); 4 System.out.println(getMaxEven(new int[]{1, 3, 5, 9})); 0 public static int --------------------------------------------------------------------------------- 2. Write a static method...

  • 1. Write a complete program based on public static int lastIndexOf (int[] array, int value) {...

    1. Write a complete program based on public static int lastIndexOf (int[] array, int value) { for (int i = array.length - 1; i >= 0; i--) { if (array [i] == value) { return i; } } return -1; write a method called lastindexof that accepts an array of integers and an integer value as its parameters and returns the last index at which the value occurs in the array. the method should return -1 if the value is...

  • Write an implementation of the following Java method: /* search(ArrayList, int key) -> int method is...

    Write an implementation of the following Java method: /* search(ArrayList, int key) -> int method is passed an array list of integers and an integer key method searches for the key in the array list and returns: the index of the key if it is in the array list -1 otherwise */

  • Problem 3 (List Implementation) (35 points): Write a method in the DoublyLList class that deletes the...

    Problem 3 (List Implementation) (35 points): Write a method in the DoublyLList class that deletes the first item containing a given value from a doubly linked list. The header of the method is as follows: public boolean removeValue(T aValue) where T is the general type of the objects in the list and the methods returns true if such an item is found and deleted. Include testing of the method in a main method of the DoublyLList class. ------------------------------------------------------------------------------------- /** A...

  • I need help for this method Write the method filter, user of the ADT List that...

    I need help for this method Write the method filter, user of the ADT List that takes as parameter a list and an object that implements the interface Condition below. the method removes all the elements of the list for which the method test returns false. the method signature is public static <T>void filter(List<T>I, Condition<T>end).

  • Create a Java code that includes all the methods from the Lecture slides following the ADTs...

    Create a Java code that includes all the methods from the Lecture slides following the ADTs LECTURE SLIDE Collect/finish the Java code (interface and the complete working classes) from lecture slides for the following ADTS 2) ArrayList ADT that uses a linked list internally (call it LArrayList) Make sure you keep the same method names as in the slides (automatic testing will be performed)! For each method you develop, add comments and estimate the big-O running time of its algorithm....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT