插入排序(JAVA)
Posted zhangphil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序(JAVA)相关的知识,希望对你有一定的参考价值。
int[] array = {2, 4, 5, 1, 3, 6};
for (int j = 2; j < array.length; j++) {
int key = array[j];
int i = j - 1;
while (i >= 0 && array[i] > key) {
array[i + 1] = array[i];
i--;
}
array[i + 1] = key;
}
for (int n : array) {
System.out.print(n + " ");
}
输出:
1 2 3 4 5 6
以上是关于插入排序(JAVA)的主要内容,如果未能解决你的问题,请参考以下文章