// The "Insertion" class. import hsa.Console; public class Insertion { //a class that illustrates the insertion sort static Console c = new Console(); void insertSort(int[] v, int n) { //insertion sort method int i,current= 0;//i is a counter and current is a variable to hold //an array value so it can be replaced int j= n;// another counter for (i= 2; i<=n; i++)//repeat this loop starting at i=2 { current= v[i];//save the value at position i in the array j= i;//set the counter j to be the value of i while( (j>=1) && (current