File tree Expand file tree Collapse file tree
src/SortAlgorithm.Benchmark Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments