package Application; import Search.*; import Sort.*; public class test { static Integer [] numArray = new Integer[] {8, 3, 9, 5, 7, 8, 4, 2, 1}; public static void main(String[] args) { new MergeSort<>(numArray); } }