-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinsertionSort.java
39 lines (38 loc) · 1002 Bytes
/
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
import java.util.*;
public class insertionSort
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int N; //size of the array
System.out.println("Enter the size of the array");
N = input.nextInt();
int[] arr = new int[N]; //declaring array
for(int i=0;i<N;i++)
{
arr[i] = input.nextInt();
}
insertionsort(arr);
//printing the array
System.out.println("The sorted array: ");
for(int i=0;i<arr.length;i++)
{
System.out.print(arr[i]+" ");
}
System.out.println();
input.close();
}
public static void insertionsort(int[] array)
{
for(int i=1;i<array.length;i++)
{
int raw = array[i];
int j;
for(j=i;j>0 && array[j-1] > raw;j--)
{
array[j] = array[j-1]; //shifting
}
array[j] = raw;
}
}
}