We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aeb314 commit 118f6d4Copy full SHA for 118f6d4
Selection Sort/About SS Algorithm
@@ -0,0 +1,5 @@
1
+- Selection sort is a simple and efficient sorting algorithm that works by repeatedly selecting the smallest (or largest) element from the unsorted
2
+portion of the list and moving it to the sorted portion of the list.
3
+
4
+- The algorithm repeatedly selects the smallest (or largest) element from the unsorted portion of the list and swaps it with the first element
5
+of the unsorted part. This process is repeated for the remaining unsorted portion until the entire list is sorted.
0 commit comments