•  
      tasks #45396 Python Program for Selection Sort
    #45396
    Mohini Singh (mohini)
    2022-08-16 22:23
    2022-08-16 22:23
    Details
    Python Program for Selection Sort
    The selection sort algorithm is to identify the smallest element in an array and sort it accordingly. The selection sort algorithm is an in-place comparison-based method that divides the input array into two sections: a sorted array on the left and an unsorted array on the right. Let us have a rough sketch of selection sorting:
    1. Assign the minimum value to array index 0
    2. Search Smallest element input in an array
    3. Swap with value at the location of minimum value
    4. Increment minimum value to point next element
    5. Repeat until the array is sorted.
    5 - Medium
    State of Progress
    2022-05-22
    100
    2022-05-24
    Mohini Singh (mohini)
    Rakesh Kumar Verma (rakesh.verma)
    2022-05-23
    Closed
    Attachments
    References
    References list is empty