Showing posts with label Selection sort. Show all posts
Showing posts with label Selection sort. Show all posts

Selection sort

Selection sort is conceptually the most simplest sorting algorithm. This algorithm will first find the smallest element in the array and swap it with the element in the first position, then it will find the second smallest element and swap...

Selection sort in Java

Selection sort is a combination of searching (search for smaller element) and sorting (Swap with first element) and move on. During each pass unsorted element with the smallest value will be swapped to its...