Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 562 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 562 Bytes

Selection Sort Algorithm (Java version)

Selection Sort Algorithm

  • Demonstrates how a Selection Sort Algorithm works
  • The sort algorithm starts with leftmost part of the array
  • If the selected value is greater than the value of n (the value being compared), swap it.
  • Otherwise, select n and move to next position of elements
  • Created to simply practice coding in Java

Created by IasJem