`

插入排序

 
阅读更多
      有一个已经有序的数据序列,要求在这个已经排好的数据序列中插入一个数,但要求插入后此数据序列仍然有序,这个时候就要用到一种新的排序方法——插入排序法,插入排序的基本操作就是将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据,算法适用于少量数据的排序,时间复杂度为O(n^2)。是稳定的排序方法。插入算法把要排序的数组分成两部分:第一部分包含了这个数组的所有元素,但将最后一个元素除外,而第二部分就只包含这一个元素。在第一部分排序后,再把这个最后元素插入到此刻已是有序的第一部分里的位置

public class InsertSortTest
{

    private static void sort(int[] c)
    {
        int len = c.length;
        for (int i = 1; i < len; i++)
        {
            int currentData = c[i];
            int temp = i;
            while (temp > 0 && c[temp - 1]>currentData)
            {
                c[temp] = c[temp-1];
                temp--;

            }
            c[temp] = currentData;
        }
    }
    

    public static void main(String[] args)
    {
        int[] arr =
        { 4, 9, 23, 1, 45, 27, 5, 2 };
        sort(arr);
        for (int a : arr)
        {
            System.out.println(a);
        }
    }

}



http://baike.baidu.com/view/396887.htm
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics