package com.hithomelabs.princeton1.module5; /* * * Selection sort "selects" the smallest element and swaps it with arr[0] of the array * * Then proceeds to do the same swapping arr[i] with arr[i:arr.length-1] */ public class Selection extends AbstractCustomSorts{ @Override public void sort(E[] arr) { } }