-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertionSort.java
54 lines (47 loc) · 1.38 KB
/
InsertionSort.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.util.Scanner;
public class InsertionSort {
public static void insertionSort(int[] arr) {
//write your code here
int temp, j;
for(int i=0; i<arr.length-1; i++)
{
j= i+1;
while(j>0 && isGreater(arr, j-1, j))
{
swap(arr, j-1, j);
j--;
}
}
}
// used for swapping ith and jth elements of array
public static void swap(int[] arr, int i, int j) {
System.out.println("Swapping " + arr[i] + " and " + arr[j]);
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
// return true if jth element is greater than ith element
public static boolean isGreater(int[] arr, int j, int i) {
System.out.println("Comparing " + arr[i] + " and " + arr[j]);
if (arr[i] < arr[j]) {
return true;
} else {
return false;
}
}
public static void print(int[] arr) {
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
public static void main(String[] args) throws Exception {
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
int[] arr = new int[n];
for (int i = 0; i < n; i++) {
arr[i] = scn.nextInt();
}
insertionSort(arr);
print(arr);
}
}