//+——————————————————————+ //| ShellSort.mq5 | //| 2019-2021, dimitri pecheritsa | //| mql5.com/en/users/dmipec | //+——————————————————————+ //+——————————————————————+ //| shell sort – array sorting algorithm | //| cases: best: n log n, average: n^(4/3), worst: n^(3/2) | //| memory: 1, stable: no, method: insertion | //| note: small code size | //+——————————————————————+ //+——————————————————————+ //| shellsort, also known as shell sort or shell’s method, is an | //|in-place comparison …
Read more