public static void EscSort(Integer[] a) {
if (a != null) {
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < a.length - 1; j++) {
if (a[j] >= a[j + 1]) {
int temp = 0;
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
System.out.print("Array after EscSort: ");
for (int i = 0; i < a.length; i++) {
System.out.print(a[i] + " ");
}
} else {
System.out.println("Null array.");
}
}