zoukankan      html  css  js  c++  java
  • Java InsertionSort

    Java InsertionSort

    /**
     * <html>
     * <body>
     *  <P> Copyright 1994-2018 JasonInternational </p>
     *  <p> All rights reserved.</p>
     *  <p> Created on 2018年4月10日 </p>
     *  <p> Created by Jason</p>
     *  </body>
     * </html>
     */
    package cn.ucaner.algorithm.sorts;
    
    /**
     * Insertion sort is a simple sorting algorithm: a comparison sort in which the
     * sorted array (or list) is built one entry at a time. It is much less
     * efficient on large lists than more advanced algorithms such as quicksort,
     * heapsort, or merge sort. 
     * <p>
     * Family: Insertion.<br>
     * Space: In-place.<br>
     * Stable: True.<br>
     * <p>
     * Average case = O(n^2)<br>
     * Worst case = O(n^2)<br>
     * Best case = O(n)<br>
     * <p>
     * @see <a href="https://en.wikipedia.org/wiki/Insertion_sort">Insertion Sort (Wikipedia)</a>
     * <br>
     * @author Justin Wetherell <phishman3579@gmail.com>
     */
    public class InsertionSort<T extends Comparable<T>> {
    
        private InsertionSort() { }
    
        public static <T extends Comparable<T>> T[] sort(T[] unsorted) {
            int length = unsorted.length;
            for (int i = 1; i < length; i++) {
                sort(i, unsorted);
            }
            return unsorted;
        }
    
        private static <T extends Comparable<T>> void sort(int i, T[] unsorted) {
            for (int j = i; j > 0; j--) {
                T jthElement = unsorted[j];
                T jMinusOneElement = unsorted[j - 1];
                if (jthElement.compareTo(jMinusOneElement) < 0) {
                    unsorted[j - 1] = jthElement;
                    unsorted[j] = jMinusOneElement;
                } else {
                    break;
                }
            }
        }
    }
    

      

  • 相关阅读:
    三次握手四次挥手
    OSI七层模型和TCP/IP协议族
    CSS水平垂直居中方式
    CSS9种水平居中方式
    CSS8种垂直居中方式
    scss 初学笔记 二 混合宏
    scss 初学笔记 一 变量声明 默认的样式 嵌套
    面向对象的程序设计之对象
    underscore.js 源码阅读 一 整体结构
    underscore.js 源码阅读 准备
  • 原文地址:https://www.cnblogs.com/jasonandy/p/9243213.html
Copyright © 2011-2022 走看看