Step-by-Step Process of Selection Sort Explained
Sep 26, 2024 · 2 min read · Selection sort is simple comparison based sorting algorithm. Steps of selection sort: Start with first element of array and assume it is smallest. Compare this element with rest of the unsorted part of array. If you find any smaller element than c...
BBiswarup commented