Question: Explain the Java solution Code line by line Given an array of integers, sort the elements in the array in ascending order. The selection sort
Explain the Java solution Code line by line
Given an array of integers, sort the elements in the array in ascending order. The selection sort algorithm should be used to solve this problem.
Examples
{1} is sorted to {1}
{1, 2, 3} is sorted to {1, 2, 3}
{3, 2, 1} is sorted to {1, 2, 3}
{4, 2, -3, 6, 1} is sorted to {-3, 1, 2, 4, 6}
Corner Cases
What if the given array is null? In this case, we do not need to do anything.
What if the given array is of length zero? In this case, we do not need to do anything.
Solution:
public class Solution { public int[] solve(int[] array) { if (array == null || array.length <= 1) { return array; } for (int i = 0; i < array.length - 1; i++) { int minIndex = i; for (int j = i + 1; j < array.length; j++) { if (array[j] < array[minIndex]) { minIndex = j; } } swap(array, i, minIndex); } return array; } private void swap(int[] array, int left, int right) { int tmp = array[left]; array[left] = array[right]; array[right] = tmp; } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
