Skip to content

Commit

Permalink
Create About SS Algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash22222 authored Jul 25, 2023
1 parent 5aeb314 commit 118f6d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Selection Sort/About SS Algorithm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Selection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the unsorted
portion of the list and moving it to the sorted portion of the list.

- The algorithm repeatedly selects the smallest (or largest) element from the unsorted portion of the list and swaps it with the first element
of the unsorted part. This process is repeated for the remaining unsorted portion until the entire list is sorted.

0 comments on commit 118f6d4

Please sign in to comment.