2018-11-14 01:15:47 +08:00
|
|
|
package Sorts;
|
2018-04-09 19:04:46 +08:00
|
|
|
|
2018-11-14 01:15:47 +08:00
|
|
|
import static Sorts.SortUtils.less;
|
|
|
|
import static Sorts.SortUtils.print;
|
2018-04-09 19:04:46 +08:00
|
|
|
|
|
|
|
class InsertionSort implements SortAlgorithm {
|
|
|
|
|
2020-10-24 18:23:28 +08:00
|
|
|
/**
|
2021-04-12 18:58:24 +08:00
|
|
|
* Generic insertion sort algorithm in increasing order.
|
2020-10-24 18:23:28 +08:00
|
|
|
*
|
2021-04-12 18:58:24 +08:00
|
|
|
* @param array the array to be sorted.
|
|
|
|
* @param <T> the class of array.
|
|
|
|
* @return sorted array.
|
2020-10-24 18:23:28 +08:00
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public <T extends Comparable<T>> T[] sort(T[] array) {
|
2021-04-12 18:58:24 +08:00
|
|
|
for (int i = 1; i < array.length; i++) {
|
|
|
|
T insertValue = array[i];
|
|
|
|
int j;
|
|
|
|
for (j = i - 1; j >= 0 && less(insertValue, array[j]); j--) {
|
|
|
|
array[j + 1] = array[j];
|
|
|
|
}
|
|
|
|
if (j != i - 1) {
|
|
|
|
array[j + 1] = insertValue;
|
2020-10-24 18:23:28 +08:00
|
|
|
}
|
2018-04-09 19:04:46 +08:00
|
|
|
}
|
2020-10-24 18:23:28 +08:00
|
|
|
return array;
|
|
|
|
}
|
2018-04-09 19:04:46 +08:00
|
|
|
|
2021-04-12 18:58:24 +08:00
|
|
|
/** Driver Code */
|
2020-10-24 18:23:28 +08:00
|
|
|
public static void main(String[] args) {
|
|
|
|
Integer[] integers = {4, 23, 6, 78, 1, 54, 231, 9, 12};
|
|
|
|
InsertionSort sort = new InsertionSort();
|
|
|
|
sort.sort(integers);
|
2021-04-12 18:58:24 +08:00
|
|
|
print(integers); /* [1, 4, 6, 9, 12, 23, 54, 78, 231] */
|
2018-04-09 19:04:46 +08:00
|
|
|
|
2020-10-24 18:23:28 +08:00
|
|
|
String[] strings = {"c", "a", "e", "b", "d"};
|
|
|
|
sort.sort(strings);
|
2021-04-12 18:58:24 +08:00
|
|
|
print(strings); /* [a, b, c, d, e] */
|
2020-10-24 18:23:28 +08:00
|
|
|
}
|
2018-04-09 19:04:46 +08:00
|
|
|
}
|