Java版插入排序[稳定]

Java版插入排序[稳定],第1张

Java版插入排序[稳定]

适用于小数组,数组已排好序或接近于排好序速度将会非常快

复杂度:O(n^2) - O(n) - O(n^2) - O(1)[平均 - 最好 - 最坏 - 空间复杂度]

public void insertionSort(int[] a) {if (null == a || a.length < 2) {return;}for (int i = 1; i < a.length; i++) {// 暂存当前值int temp = a[i];int j = i - 1;while (j >= 0 && temp < a[j]) {// 后移a[j + 1] = a[j];j--;}// 当前值归位a[j + 1] = temp;}}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4877592.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-11
下一篇 2022-11-11

发表评论

登录后才能评论

评论列表(0条)

保存