Skip to content

Commit 69838ee

Browse files
committed
chore: update order
1 parent 3d892db commit 69838ee

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/SortAlgorithm.Benchmark/InsertionBenchmark.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,32 +75,32 @@ public void MergeInsertionSort()
7575
}
7676

7777
[Benchmark]
78-
public void ShellSortCiura2001()
78+
public void ShellSortKnuth1973()
7979
{
80-
SortAlgorithm.Algorithms.ShellSortCiura2001.Sort(_shellArrayCiura2001.AsSpan());
80+
SortAlgorithm.Algorithms.ShellSortKnuth1973.Sort(_shellArrayKnuth1973.AsSpan());
8181
}
8282

8383
[Benchmark]
84-
public void ShellSortKnuth1973()
84+
public void ShellSortSedgewick1986()
8585
{
86-
SortAlgorithm.Algorithms.ShellSortKnuth1973.Sort(_shellArrayKnuth1973.AsSpan());
86+
SortAlgorithm.Algorithms.ShellSortSedgewick1986.Sort(_shellArraySedgewick1986.AsSpan());
8787
}
8888

8989
[Benchmark]
90-
public void ShellSortLee2021()
90+
public void ShellSortTokuda1992()
9191
{
92-
SortAlgorithm.Algorithms.ShellSortLee2021.Sort(_shellArrayLee2021.AsSpan());
92+
SortAlgorithm.Algorithms.ShellSortTokuda1992.Sort(_shellArrayTokuda1992.AsSpan());
9393
}
9494

9595
[Benchmark]
96-
public void ShellSortSedgewick1986()
96+
public void ShellSortCiura2001()
9797
{
98-
SortAlgorithm.Algorithms.ShellSortSedgewick1986.Sort(_shellArraySedgewick1986.AsSpan());
98+
SortAlgorithm.Algorithms.ShellSortCiura2001.Sort(_shellArrayCiura2001.AsSpan());
9999
}
100100

101101
[Benchmark]
102-
public void ShellSortTokuda1992()
102+
public void ShellSortLee2021()
103103
{
104-
SortAlgorithm.Algorithms.ShellSortTokuda1992.Sort(_shellArrayTokuda1992.AsSpan());
104+
SortAlgorithm.Algorithms.ShellSortLee2021.Sort(_shellArrayLee2021.AsSpan());
105105
}
106106
}

0 commit comments

Comments
 (0)