码迷,mamicode.com
首页 > 编程语言 > 详细

C# 插入排序算法

时间:2016-05-31 00:56:13      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            int[] a = { 118, 101, 105, 127, 112 };

            InsertSort(a);



            Console.ReadLine();
        }



        static void InsertSort(int[] array)
        {
            int j, t;

            for (int i = 1; i < array.Length; i++)
            {
                t = array[i];
                j = i - 1;


                while (j >= 0 && t < array[j]) 
                {
                    array[j + 1] = array[j];
                    j--;
                }

                array[j + 1] = t;

                Console.WriteLine("" + i + "步排序结果");

                for (int h = 0; h < array.Length; h++)
                {
                    Console.Write(" " + array[h].ToString());
                }
                Console.WriteLine();
            }


        }

    
    }

    


}

技术分享

C# 插入排序算法

标签:

原文地址:http://www.cnblogs.com/plateFace/p/5544253.html

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