💻 Code Smarter, Spend Less! Use code OCT25 to get 16% OFF all Solved Assignments — Limited Time Only!
Starting from:

$30

Assignment 7 Solution

Assignment 7 Skills




Lists



Sorting



Searching









Assignment 7 Background




For this assignment you will use your List class from Assignmnet 6A.




Assignment 7 Requirements




Write the following methods in your ArrayList class.



void SelectionSort();



void InsertionSort();



int BinarySearch(int desiredValue, int lBound, int rBound); BinarySearch should return the index of the desiredValue, or -1 if the desiredValue is not in the list.



Write a main class called ListTest to test your sort and search method.









Assignment 7 Submission Submit on Blackboard:




ArrayList.java



ListTest.java



Required Each submitted le should include your name and a statement that this is your own work. This should appear as a comment at the beginning of any code le.