Running Time of Algorithms HackerRank Solution


Running Time of Algorithms HackerRank Solution
Source : https://www.hackerrank.com/challenges/runningtime



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


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();
insertionSortShifts(array);
}
public static void insertionSortShifts(int[] array) {
int shifts = 0;
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 elements (1 by 1) to make room for inserting
j--;
shifts++;
}
array[j] = value;
}
System.out.println(shifts);
}
}

No comments:

Post a Comment