손코딩으로 나오거나 정보처리기사에서도 자주 나오는 기본 정렬 알고리즘 https://www.toptal.com/developers/sorting-algorithms Sorting Algorithms Animations Animation, code, analysis, and discussion of 8 sorting algorithms on 4 initial conditions. www.toptal.com 위 사이트에서 알고리즘이 어떤 방식으로 진행되는지, 속도는 대략 어느 정도인지 한눈에 살펴볼 수 있다. 선택정렬 public static void main(String[] args) { //selection sort int[]num=new int[] {25,15,10,5,12,9,17,23,13,19};..