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

排序 普通插入法排序

时间:2017-07-12 10:14:01      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:++i   new   write   generic   百度   void   ati   时间   system   

原文发布时间为:2009-03-06 —— 来源于本人的百度文章 [由搬家工具导入]

using System;
//using System.Collections.Generic;
//using System.Text;

namespace sorts
{
    public class Class2//插入法排序
    {
        public static void Main()
        {
            int[] iArrary = new int[] { 1, 5, 3, 6, 10, 3, 9 };
            Sort(iArrary);
            for (int m = 0; m < iArrary.Length; m++)
                Console.Write("{0} ", iArrary[m]);
            Console.ReadLine();
        }
        public static void Sort(int[] list)
        {
            for (int i = 1; i < list.Length; ++i)
            {
                int t = list[i];
                int j = i;

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

        }

    }
}

排序 普通插入法排序

标签:++i   new   write   generic   百度   void   ati   时间   system   

原文地址:http://www.cnblogs.com/handboy/p/7153255.html

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