java InsertSort

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java InsertSort相关的知识,希望对你有一定的参考价值。

public static void sort(Comparable []a){
    for(int i = 1 ; i < a.length; i ++) {
        Comparable temp = a[i];
        int j = i;
        for(;j>0 && less(temp,a[j-1]);j--) {
            a[j] = a[j - 1];
        }
        a[j] = temp;
    }
}

以上是关于java InsertSort的主要内容,如果未能解决你的问题,请参考以下文章

InsertSort

InsertSort 插入排序

排序--InsertSort优化

InsertSort

InsertSort

InsertSort