mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-01-21 19:50:35 +01:00
Made FinnSort public
This commit is contained in:
parent
8e047dca9d
commit
3fbee13d07
@ -7,7 +7,7 @@ public class FinnSort {
|
||||
|
||||
private static final ArrayList<Run> runs = new ArrayList<>();
|
||||
|
||||
static <T> void sort(T[] a, Comparator<? super T> c) {
|
||||
public static <T> void sort(T[] a, Comparator<? super T> c) {
|
||||
|
||||
int n = a.length;
|
||||
int i = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user