Recent Tutorials and Articles
    HackerRank Solution: Insertion Sort 2
    Published on: 25th May 2018

    This tutorial provides Java solution to "Insertion Sort 2" challenge of HackerRank.

    Hackerrank Challenge Details


    Problem Statement:

    In Insertion Sort Part 1, you sorted one element into an array. Using the same approach repeatedly, can you sort an entire unsorted array?

    Guideline: You already can place an element into a sorted array. How can you use that code to build up a sorted array, one element at a time? Note that in the first step, when you consider an element with just the first element - that is already "sorted" since there's nothing to its left that is smaller.

    In this challenge, don't print every time you move an element. Instead, print the array after each iteration of the insertion-sort, i.e., whenever the next element is placed at its correct position.

    Since the array composed of just the first element is already "sorted", begin printing from the second element and on.

    Input Format:

    There will be two lines of input:

    • s - the size of the array
    • ar - a list of numbers that makes up the array

    Output Format:

    On each line, output the entire array at every iteration.

    Constraints:

    • < s < 1000
    • -10000 < x < 10000, x € ar

    Sample Input:

    6
    1 4 3 5 6 2

    Sample Output:

    1 4 3 5 6 2 
    1 3 4 5 6 2 
    1 3 4 5 6 2 
    1 3 4 5 6 2 
    1 2 3 4 5 6 

    Explanation:

    Insertion Sort checks 4 first and doesn't need to move it, so it just prints out the array. Next, 3 is inserted next to 1, and the array is printed out. This continues one element at a time until the entire array is sorted.

    Task:

    The method insertionSort takes in one parameter: ar, an unsorted array. Use an Insertion Sort Algorithm to sort the entire array.

    Solution Details


    Java Implementation:

    package com.saintech.allprogtutorials.hackerrank.algos;
    
    import java.util.Scanner;
    
    /**
     * @author Sain Technology Solutions
     * 
     * Solution to Problem - https://www.hackerrank.com/challenges/insertionsort2
     *
     */
    public class InsertionSort2 {
    	
    	/**
    	 * Prints the all elements of input array.
    	 */
    	private static void printArray(int[] arr) {
    		for(int elem : arr) {
    			System.out.print(elem + " ");
    		}
    		System.out.println();
    	}
    	
    	/**
    	 * Sorts the input array using insertion sort
    	 */
    	public static void insertIntoSorted(int[] elems) {
    		// For every element of input array starting from second element
    		for(int i = 1; i  < elems.length; i++) {
    			final int tmp = elems[i];
    			int j = i - 1;
    			// Keep shifting elements to right unless we meet a number less than unsorted number
    			for(; j >= 0 && elems[j] > tmp; j--) {
    				elems[j + 1] = elems[j];
    			}
    			elems[j + 1] = tmp;
    			printArray(elems);
    		}
    	}
    	
    	public static void main(String[] args) {
    		final Scanner in = new Scanner(System.in);
    		final int N = in.nextInt();
    		
    		final int[] elems = new int[N];
    		for(int i = 0; i < N; i++) {
    			elems[i] = in.nextInt();
    		}
    		in.close();
    		
    		insertIntoSorted(elems);
    	}
    }
    

    Thank you for reading through the tutorial. In case of any feedback/questions/concerns, you can communicate same to us through your comments and we shall get back to you as soon as possible.

    Published on: 25th May 2018

    Comment Form is loading comments...