C#快速排序源码演示-创新互联
                                            如下的资料是关于C#快速排序演示的代码,应该对各位朋友有用处。

private static int Partition (int[] list, int i, int j)
{
    int Key = list [i];
    while (i < j)
    {
        while (list [j] >= Key && i < j)
            j--;
        if(i< j)
            list [i++] = list [j];
        while (list [i] <= Key && i < j)
            i++;
        IF (i < j)
            list [j--] = list[i];
    }
    list [i] = Key;
    return i;
}
public static void QuickSort (int[] list, int low, int high)
{
    if(low < high - 1)
    {
        int Key = Partition (list, low, high);
        QuickSort (list, low, Key - 1);
        QuickSort (list, Key + 1, high);
    }
}创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
本文题目:C#快速排序源码演示-创新互联
当前路径:http://www.cqwzjz.cn/article/ddshjc.html

 建站
建站
 咨询
咨询 售后
售后
 建站咨询
建站咨询 
 