Skip to content

Instantly share code, notes, and snippets.

@samarpanda
Created August 6, 2015 02:09
Show Gist options
  • Save samarpanda/a54e4cd43586eed6afbf to your computer and use it in GitHub Desktop.
Save samarpanda/a54e4cd43586eed6afbf to your computer and use it in GitHub Desktop.

Concept of Selection Sort

  1. Find minimum index of array starting from given index
  2. Swap values of array
  3. Loop through array elements: Find minimum value index and swap
//Find Minimum Index of array starting from given index
//Swap values of array
//Loop through array elements
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment