Princeton1/module5/src/main/java/com/hithomelabs/princeton1/module5/Selection.java
hitanshu310 b8f6081173 practice (#13)
Reviewed-on: Hithomelabs/Princeton1#13
Co-authored-by: hitanshu310 <hitanshu98@gmail.com>
Co-committed-by: hitanshu310 <hitanshu98@gmail.com>
2025-02-07 21:00:19 +00:00

14 lines
330 B
Java

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<E> extends AbstractCustomSorts<E>{
@Override
public void sort(E[] arr) {
}
}