小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

FindKthelement

 Lukies_圖書館 2019-12-09

#include <iostream>

#include<stdlib.h>

#include<fstream>

using namespace std;

int temp;int i,j;

void print(ofstream &write,int *a){

     write<<endl;

    for(int i=0;i<10;i++){

write<<a[i]<<' ';

    }

    write<<endl;

}

int FindKthelement(ofstream &write,int *a,int left,int right,int k){

int judge=a[left];i=left;left++;j=right;

print(write,a);

write<<"Moss: u have just made a recursion.This time left="<<left<<" right="<<right<<" k="<<k<<" judge="<<judge<<" i="<<i<<" j="<<j<<endl;

while(1){

while(a[left]<=judge){left++;}

while(a[right]>judge){right--;}

if(right>left){write<<"switch "<<a[left]<<" and "<<a[right]<<endl;temp=a[left];a[left]=a[right];a[right]=temp;}

else {break;}

}

write<<"break: left is "<<left<<" while right is "<<right<<endl;

if(k==left){return judge;}

else if(k<=left){temp=a[left-1];a[left-1]=a[i];a[i]=temp;right=left-2;write<<"choose the left.";FindKthelement(write,a,i,right,k);}

else{temp=a[left-1];a[left-1]=a[i];a[i]=temp;write<<"choose the right.";FindKthelement(write,a,right+1,j,k);}

}

int main()

{

    int a[10]={4,9,0,1,2,6,5,8,3,7};

//               4 3 0 1 2 6 5 8 9 7

ofstream write;

write.open("Findkthelement.txt");

write<<FindKthelement(write,a,0,9,10);

//int a[3]={5,9,1};

//write<<FindKthelement(a,0,2,2,3);

 //                0 1 2 3 4 5 6 7 8 9

//                {4,9,0,1,2,6,5,8,3,7};

//                 4 3 0 1 2 6 5 8 9 7

   return 0;

}

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多