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
- Host: GitHub
- URL: https://github.com/skorupcia/shellsort_experiment
- Owner: skorupcia
- Created: 2024-05-17T16:22:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-17T16:33:40.000Z (over 1 year ago)
- Last Synced: 2025-02-06T04:41:26.187Z (12 months ago)
- Topics: experiment, performance, sedgewick, shellsort
- Language: C#
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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⌋

Hibbard A000225:
2^k-1

Sedgewick A036562:
4^k+3*2^(k-1)+1

Marcin Ciura A102549:
⌊701,301,132,57,23,10,4,1⌋

3 Smooth Number A003462:
2^p 3^q

Own sequence (made up)
⌊n/10⌋

## Speed comparison
