mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 15:02:46 +08:00
Improving BitonicSort (#5244)
* Improving BitonicSort * Moving max method to SortingUtils * Adding Javadoc to merge method * Fix for test and code improvements * Improving code readability * Renaming method parameters --------- Co-authored-by: alx <alx@alx.com> Co-authored-by: vil02 <65706193+vil02@users.noreply.github.com>
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
package com.thealgorithms.sorts;
|
||||
|
||||
public class BitonicSortTest extends SortingAlgorithmTest {
|
||||
@Override
|
||||
SortAlgorithm getSortAlgorithm() {
|
||||
return new BitonicSort();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user