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:
Alex Klymenko
2024-06-21 22:37:58 +03:00
committed by GitHub
parent 15d2e70673
commit 8ef69bc854
2 changed files with 100 additions and 59 deletions

View File

@ -0,0 +1,8 @@
package com.thealgorithms.sorts;
public class BitonicSortTest extends SortingAlgorithmTest {
@Override
SortAlgorithm getSortAlgorithm() {
return new BitonicSort();
}
}