Insertion Sort - Part 2 HackerRank Solution


Insertion Sort - Part 2 HackerRank Solution
Source : https://www.hackerrank.com/challenges/insertionsort2



Source : https://www.hackerrank.com/challenges/insertionsort2


Solution


// Karthikalapati.blogspot.com
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int s = scan.nextInt();
int[] array = new int[s];
for (int i = 0; i < s; i++) {
array[i] = scan.nextInt();
}
scan.close();
insertionSortPart2(array);
}
public static void insertionSortPart2(int[] array) {
for (int i = 1; i < array.length; i++) {
int j = i;
int value = array[i];
while (j >= 1 && array[j-1] > value) { // find where to insert "value"
array[j] = array[j-1]; // shift the elements (1 by 1) to make room for inserting
j--;
}
array[j] = value;
printArray(array);
}
}
private static void printArray(int[] array) {
for (int num: array) {
System.out.print(num + " ");
}
System.out.println();
}
}

No comments:

Post a Comment