码迷,mamicode.com
首页 > 其他好文 > 详细

ALGORITHM2.2 Insertion sort

时间:2018-05-28 21:09:11      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:code   main   sso   bool   ctr   sort   IV   insert   stdout   

//insertion sort

import edu.princeton.cs.algs4.*;

public class Insertion
{
    public static void sort(Comparable[] a)
    {
        int N = a.length;
        for(int i = 0; i < N; i++)
        {
            for(int j = i; j > 0 && less(a[j], a[j-1]); j--)
                exch(a, j, j-1);
        }
    }
    
    private static boolean less(Comparable v, Comparable w)
    {
        return v.compareTo(w) < 0;
    }
    
    private static void exch(Comparable[] a, int i, int j)
    {
        Comparable t = a[i];
        a[i] = a[j];
        a[j] = t;
    }
    
    private static void show(Comparable[] a)
    {
        for(int i = 0; i < a.length; i++)
            StdOut.print(a[i] + " ");
        StdOut.println();
    }
    
    public static boolean isSorted(Comparable[] a)
    {
        for(int i = 1; i < a.length; i++)
            if(less(a[i], a[i-1])) return false;
        return true;
    }
    
    public static void main(String[] args)
    {
        String[] a = In.readStrings();//CTRL + d
        sort(a);
        assert isSorted(a);
        show(a);
    }
}

 

ALGORITHM2.2 Insertion sort

标签:code   main   sso   bool   ctr   sort   IV   insert   stdout   

原文地址:https://www.cnblogs.com/w-j-c/p/9102010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!