用C#实现希尔排序

时间:2021-05-02

导读:本文介绍了使用C#实现希尔排序的方法

using System;namespace ShellSorter { public class ShellSorter{public void Sort(int [] list){int inc;for(inc=1; inc <= list.Length/9; inc=3 * inc + 1); for(; inc>0; inc /= 3) {for(int i = inc + 1; i <= list.Length; i += inc) {int t = list[i-1]; int j = i; while((j > inc) && (list[j - inc - 1] > t)){list[j - 1] = list[j - inc - 1]; j -= inc;}list[j - 1] = t; } } }}

public class MainClass { public static void Main() {int[] iArrary = new int[]{1,5,13,6,10,55,99,2,87,12,34,75,33,47}; ShellSorter sh=new ShellSorter();sh.Sort(iArrary); for(int m = 0;m< iArrary.Length; m ++) Console.Write("{0} ",iArrary[m]); Console.WriteLine(); } } }

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章