1. Implement Bubble sort, Insertion sort, Selection sort, Quick sort, Merge sort and Radix sortalgorithms (use static method).2. Assume there are 21 students in your class. Take random scores (in the range of 0 to 100) of21 students using an Integer array named stdScore. Hint to generate a random score: Randomrand = new Random(); Integer score = rand.nextInt(100);3. To perform the descending order sorting, pass the stdScore array (random score) whileinvoking each of the sorting algorithm you have implemented in step 1. Count number ofcomparisons required for performing descending order sorting.
4. Repeat step 3 by passing the already sorted stdScore array. Count number of comparisonsrequired for descending order sorting.5. Fill up the following table using the results you got from Step 3 and 4
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here