Skip to content

Commit 8b41db2

Browse files
committed
Added a java program for the implementation of insertion sort.
1 parent 50e8c29 commit 8b41db2

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

InsertionSort.java

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Java program for implementation of Insertion Sort
2+
class InsertionSort{
3+
void sort(int arr[]){
4+
int n = arr.length;
5+
for (int i=1; i<n; ++i){
6+
int key = arr[i];
7+
int j = i-1;
8+
9+
while (j>=0 && arr[j] > key){
10+
arr[j+1] = arr[j];
11+
j = j-1;
12+
}
13+
arr[j+1] = key;
14+
}
15+
}
16+
17+
static void printArray(int arr[]){
18+
int n = arr.length;
19+
for (int i=0; i<n; ++i)
20+
System.out.print(arr[i] + " ");
21+
22+
System.out.println();
23+
}
24+
25+
public static void main(String args[]){
26+
int arr[] = {12, 11, 13, 5, 6};
27+
28+
InsertionSort ob = new InsertionSort();
29+
ob.sort(arr);
30+
31+
printArray(arr);
32+
}
33+
}

0 commit comments

Comments
 (0)