Page 1 of 1

Task - 2: Write a java program (AnyTypeMergeSort. java) to implement the Merge Sort algorithm to sort the array containi

Posted: Tue Jul 12, 2022 8:28 am
by answerhappygod
Task 2 Write A Java Program Anytypemergesort Java To Implement The Merge Sort Algorithm To Sort The Array Containi 1
Task 2 Write A Java Program Anytypemergesort Java To Implement The Merge Sort Algorithm To Sort The Array Containi 1 (29.13 KiB) Viewed 38 times
Task - 2: Write a java program (AnyTypeMergeSort. java) to implement the Merge Sort algorithm to sort the array containing any type of elements (suppose strings). Your program will have the following method signature: - public void mergeSort(T[] A, int lowerBound, int upperBound) - public void merge(T]A, int lowerBound, int midPoint, int upperBound) [Hint: use Comparable interface from java library and override the CompareTo method to compare two objects. Read some stuff about Comparable interface here. https://docs.oracle.com/iavase/8/docs/a ... rable.html]