快速排序 指针

int part(int *Arry,int l,int r) 
{
    int ind=*(Arry+l);
    while(l=ind){
            r--;
        }
        if(l

 

你可能感兴趣的:(C++)