直接插入排序

直接插入排序的基本操作是将一个记录插入到已经排好序的有序表中,从而得到一个新的、记录数增1的有序表。

插入排序基本原理
using System;
using System.Linq;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] sqList = new int[] { 0, 5, 4, 3 };
            InsertSort(sqList);
            sqList.ToList().ForEach(s => Console.Write(s + " "));
            Console.ReadLine();
        }

        static void InsertSort(int[] sqList)
        {
            for (int i = 1; i < sqList.Length; i++) //假设第一个元素已经放好位置,后面的元素就是放在其左侧或者右侧
            {
                if (sqList[i] < sqList[i - 1])
                {
                    int sentry = sqList[i]; //将即将排序的元素暂存,这里没有将数组第一个元素设置为哨兵
                    int j;
                    for (j = i - 1; j >= 0 && sqList[j] > sentry; j--)
                    {
                        sqList[j + 1] = sqList[j];
                    }
                    sqList[j + 1] = sentry;
                }
            }
        }
    }
}

你可能感兴趣的:(直接插入排序)