An open API service indexing awesome lists of open source software.

https://github.com/skorupcia/shellsort_experiment

School project to test Shell sort in variety of sequences
https://github.com/skorupcia/shellsort_experiment

experiment performance sedgewick shellsort

Last synced: 10 months ago
JSON representation

School project to test Shell sort in variety of sequences

Awesome Lists containing this project

README

          

# Shell Sort Experiment

School project to test Shell sort speed in variety of sequences in C#

## Used Sequences

Shell:

⌊N/2^k⌋

image

Hibbard A000225:

2^k-1

image

Sedgewick A036562:

4^k+3*2^(k-1)+1

image

Marcin Ciura A102549:

⌊701,301,132,57,23,10,4,1⌋

image

3 Smooth Number A003462:

2^p 3^q

image

Own sequence (made up)

⌊n/10⌋

image

## Speed comparison

image