經常使用算法(c語言版)

主要針對NOJ及C程序考試,總結一些c++中用STL實現的功能c++ 1.快排(遞歸實現)數組 void quicksort(int left,int right) { int i,j,t,temp; if(left>right) return; temp=a[left]; //temp中存的就是基準數 i=left; j=right; while(i!=j
相關文章
相關標籤/搜索