public class InsertionSort { public static void main(String[] args) { int arr[]={44,65,11,22,87}; //WE are going to sort it in Insertion sort manner int i,j,k,n,temp; n = arr.length; for (i = 1;i 0 && arr[j]