Algorithm 5_Counting_Sort

Algorithm 5_Counting_Sort

 

   Counting sort assumes that each of the n input elements is an integer in the range 0 to k,for some  intefer k.When k=O(n),the soer runs in big theta(n) time.The basic idea of counting sort is to determine,for each input element x,the number of elements less than x.This information can be used to place element x directly into its position in the output array.

        public static void Sort(Int32[] input, Int32 range)

        {

            Int32[] temp = new Int32[range+1];

            Int32[] output = new Int32[range+1];

            for (Int32 j = 0; j < input.Length; j++)

                temp[input[j]]++;

            //temp[i] now contains the number of element equal to i

            for (Int32 i = 1; i <= range; i++)

                temp[i] += temp[i - 1];

            //temp[i] now contain the number of element less than or equal to i

            for (Int32 j = input.Length - 1; j >= 0; j--)

            {

                output[temp[input[j]]] = input[j];

                temp[input[j]]--;

            }

            //now output[1,..range] hold the result.

            for (Int32 i = 0; i < input.Length; i++)

                input[i] = output[i+1];

            //now the elements in input array is sorted

        }

 

    An important property of counting sort is that it is stable:numbers with the same value appear in the output array in the same order as they do in the input array.Normally,the property of stability is important only when satellite data are carried around with the element being sorted.

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值