mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-17 14:04:33 +00:00
[PR #1445] Added new sorting algorithm, middle sort #2041
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/1445
State: closed
Merged: No
Description of Change
Add a new algorithm called middle sort, which starts in the middle of an array and sorts it from the center element(s) outwards until the edges of the array are reached, at which point the array is sorted.
References
Checklist
Notes: Add a new sorting algorithm called middle sort