insertion sort – array sorting algorithm – library MetaTrader 5
//+——————————————————————+ //| InsertionSort.mq5 | //| 2019-2021, dimitri pecheritsa | //| mql5.com/en/users/dmipec | //|——————————————————————| //| cls | insertion sort | //|——————————————————————| //| use | array sorting algorithm | //| best: n; average: n^2; worst: n^2 | //| memory: 1; stable: yes; method: insertion | //| note: o(n + d), in the worst case over sequences that have d | //|inversions. | //|——————————————————————| //| insertion … Read more