zoukankan      html  css  js  c++  java
  • 算法 排序 快速排序

    void QuickSort(SeqList R,int low,int high)

        
    // 对R[low..high]快速排序
        int pivotPos;    // 划分后的基准记录的位置
        if(low < high)
        
    {
            
    // 仅当区间长度大于1时才须排序
            pivotPos = Partition(R,low,high); // 对R[low..high]做划分
            QuickSort(R,low,pivotPos - 1); // 对左区间递归排序
            QuickSort(R,pivotPos + 1,high); // 对右区间递归排序
        }

    }
     // QuickSort

    void QuickSort(int[] x, int s, int t)
    {
        
    int temp;
        
    int i = s, j = t;
        
    if(s < t)
        
    {
            temp 
    = x[s];
            
    do
            
    {
                
    while(j > i && x[j] >= temp)
                
    {
                    j
    --;
                }

                
    if(i < j)
                
    {
                    x[i] 
    = x[j];
                    i
    ++;

                }

                
    while(i < j && x[i] <= temp)
                
    {
                    i
    ++;
                }

                
    if(i < j)
                
    {
                    x[j] 
    = x[i];
                    j
    --;
                }

            }
    while(i < j);
            x[i] 
    = temp;
            QuickSort(x,s,j
    -1);
            QuickSort(x,j
    +1,t);

        }

    }
  • 相关阅读:
    java模拟多线程
    zookeeper的搭建方法
    虚拟机无法ping通物理机的解决方案
    虚拟机桥接模式下多台Ubuntu16.04系统互相连接
    Ubuntu下安装libpcap+测试安装
    在Ubuntu下安装gcc编译器+测试
    在Ubuntu下配置jdk+maven
    使用Xshell对虚拟机上的Ubuntu系统进行远程连接
    javaWeb开发中常见的问题
    如何用eclipse运行导入的maven项目
  • 原文地址:https://www.cnblogs.com/xiaodi/p/296482.html
Copyright © 2011-2022 走看看