Selection Sort: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

13 May 2023

12 May 2023

  • curprev 05:3605:36, 12 May 2023Admin talk contribs 2,348 bytes +2,348 Created page with "Selection Sort is a simple comparison-based sorting algorithm that works by repeatedly finding the minimum (or maximum) element from the unsorted part of the list and moving it to the beginning (or end) of the sorted part. It is an elementary sorting algorithm that is not suitable for large datasets due to its high time complexity. == Algorithm == The Selection Sort algorithm works as follows: * Find the minimum (or maximum) element in the unsorted part of the list an..."