




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、實(shí) 驗(yàn) 報(bào) 告(2015/2016學(xué)年 第2學(xué)期)課程名稱數(shù)據(jù)結(jié)構(gòu)A實(shí)驗(yàn)名稱各種內(nèi)排序算法的實(shí)現(xiàn)及性能的比較實(shí)驗(yàn)時(shí)間2016年6月20日指導(dǎo)單位計(jì)算機(jī)科學(xué)與技術(shù)系指導(dǎo)教師駱健學(xué)生姓名班級(jí)學(xué)號(hào)學(xué)院(系) 管理學(xué)院專 業(yè)信息管理與信息系統(tǒng)一、 問題陳述(1) 驗(yàn)證教材的各種內(nèi)排序算法(2) 分析各種內(nèi)排序算法的時(shí)間復(fù)雜度(3) 改進(jìn)教材中的快速排序法,使得當(dāng)子集和小于10個(gè)元素時(shí)改用直接插入排序(4) 使用隨機(jī)數(shù)發(fā)生器產(chǎn)生大數(shù)據(jù)集合,運(yùn)行上述 各排序算法,使系統(tǒng)時(shí)鐘測(cè)量個(gè)算法所需的實(shí)際時(shí)間,并進(jìn)行比較。系統(tǒng)時(shí)鐘包含在頭文件“time.h”中。二、概要設(shè)計(jì)Main.cpp調(diào)用Menu.h ,為主程序
2、。Menu.h主菜單Selectsort.h簡單選擇排序Insertsort.h直接插入排序Bubblesort.h冒泡排序Quicksort.h快速排序Mergesort.h合并排序三、詳細(xì)設(shè)計(jì)簡單選擇排序:將初始序列(A0An-1)作為待排序序列,第一趟在待排序序列(A0An-1)中找最小元素,與該序列中第一個(gè)元素A0交換,這樣子序列(A0)有序,下一趟排序在帶牌子序列(A1An-1)中進(jìn)行。第i趟排序子序列(Ai-1An-1)中進(jìn)行。經(jīng)過n-1趟排序后使得初始序列有序。程序流程圖:開始i=0i<n-1Small=ij=i+1j<nAj<AsmallSmall=jSwap
3、(Ai,Asmall)j+結(jié)束NNNYYi+直接插入排序:一個(gè)元素插入到有序表中,首先將其存入臨時(shí)變量temp,然后從后往前查找插入位置。當(dāng)temp小于表中元素時(shí),就將該元素后移一個(gè)位置,繼續(xù)比較、移動(dòng),直到temp大于等于表中元素或者到了有序表的第一個(gè)元素結(jié)束,這時(shí)就可將temp存入剛后移的元素的位置了。程序流程圖:開始i<nint j=iT temp=Aij>0&&temp<Aj-1Aj=Aj-1;j-Aj=tempi+結(jié)束NYYN冒泡排序:第一趟在序列(A0An-1)中從前往后進(jìn)行兩個(gè)相鄰元素的比較,若后者小,則交換,比較n-1次;第一趟排序結(jié)束,最大元
4、素被交換到An-1中(即沉底)下一趟排序只需在子序列(A0An-2)中進(jìn)行;如果在某一趟排序中未進(jìn)行交換元素,說明子序列已經(jīng)有序,則不再進(jìn)行下一趟排序。程序流程圖:開始i=n-1i>0last=0;j=0j<iAj+1<AjSwap(Aj,Aj+1)Last=ji=last結(jié)束NNYY快速排序:取第一個(gè)元素作為分割元素,初始化i=left,j=right+1,i從左往右尋找第一個(gè)大于等于分割元素的元素,j從右往左找第一個(gè)小于等于分割元素的元素并交換,i和j繼續(xù)移動(dòng),重復(fù)上述步驟,直到當(dāng)i>=j時(shí)將j與第一個(gè)元素交換。程序流程圖:開始left<righti=left
5、;j=righti+Ai<Aleftj-Aj>Alefti<jSwap(Ai,Aj)i<jSwap(Aleft,Aj)Qsort(A,left,j-1)Qsort(A,j+1,right)結(jié)束NYYNYNNYYN兩路合并排序:將有n 個(gè)元素的序列看成是n個(gè)長度為1的有序子序列,然后兩兩合并子序列,得到n/2個(gè)長度為2或1的有序子序列,再兩兩合并直到得到一個(gè)長度為n的有序序列時(shí)結(jié)束。程序流程圖:開始int size=1Size<ni1=1i1+size<ni2=i1+sizej1=i2-1i2+size-1>n-1j2=n-1Merge(A,i1,j1,
6、i2,j2)i1=j2+1size*=2結(jié)束j2=i2+size-1NYYNNY四、程序代碼selectsort.h#include <iostream.h>/簡單選擇排序template <class T>void SelectSort(T A, int n) int small;for (int i=0; i<n-1; i+) small=i;for(int j=i+1;j<n;j+)if(Aj<Asmall)small=j;Swap(Ai,Asmall);Insertsort.h#include <iostream.h>/直接插入排序
7、template <class T>void InsertSort(T A, int n) for(int i=1; i<n; i+) int j=i;T temp=Ai;while(j>0&&temp<Aj-1)Aj=Aj-1;j-;Aj=temp;/*ok!*/Bubblesort.h#include <iostream.h>template <class T>void BubbleSort(T A, int n) int i,j,last; i=n-1; while(i>0) last=0; for(j=0;j&
8、lt;i;j+) if(Aj+1<Aj) Swap(Aj,Aj+1); last=j; i=last; Quicksort.h#include <iostream.h>/改進(jìn)的快速排序template<class T>void quick(T A,int n)int *a; int top=0,right,left,j; a=new intn;if(a=NULL) return;atop+=0;atop+=n-1; /lcfor(j=0;aj!=NULL;j+) left=aj+;right=aj; if(left>right)Swap(left,right
9、); if(right-left<15)InsertSortExt(A,left,right); elseatop+=left; atop+=QuickSort(A,left,right)-1;atop+=atop-2+2;atop+=right; template<class T>int QuickSort(T A,int left,int right) int i,j;if(left<right)i=left;j=right+1;dodo i+;while(Ai<Aleft);do j-;while(Aj>Aleft);if(i<j)Swap(Ai
10、,Aj);while(i<j);Swap(Aleft,Aj);return j;return 0;template<class T>void InsertSortExt(T A,int left,int right) for(int i=left+1; i<right; i+) int j=i;T temp=Ai; while (j>0 && temp<Aj-1) Aj=Aj-1; j-; Aj=temp; Mergesort.h#include <iostream.h>/兩路合并的C+程序template <class T
11、>void Merge(T A,int i1,int j1,int i2,int j2) T *Temp=new Tj2-i1+1; int i=i1,j=i2,k=0; while(i<=j1&&j<=j2)if(Ai<=Aj)Tempk+=Ai+;else Tempk+=Aj+;while(i<=j1)Tempk+=Ai+;while(j<=j2)Tempk+=Aj+;for(i=0;i<k;i+)Ai1+=Tempi;delete Temp; /合并排序的C+程序template <class T>void Merge
12、Sort(T A, int n)int i1,j1,i2,j2; int size=1; while(size<n)i1=0;while(i1+size<n)i2=i1+size;j1=i2-1;if(i2+size-1>n-1)j2=n-1;else j2=i2+size-1;Merge(A,i1,j1,i2,j2);i1=j2+1;size*=2;Meau.h#include <iostream.h>#include <stdio.h>#include <stdlib.h>#include <time.h>#include
13、"selectsort.h"#include "insertsort.h"#include "bubblesort.h"#include "quicksort.h"#include "mergesort.h"#define SIZE 400#define TIMES 1000template <class T>class Menupublic:void printmenu();void selectsort();/簡單選擇排序void insertSort();/直接插入排序void
14、 bubbleSort();/冒泡排序void quickSort();/快速排序void mergeSort();/兩路合并排序void childmenu();/子菜單1void childmenu2();/子菜單2void switcha();private:int a,b,c;template <class T>void Menu<T>:printmenu()cout<<"-內(nèi)排序測(cè)試系統(tǒng)-"<<endl;cout<<" "<<endl<<endl<<
15、endl;cout<<"1.簡單選擇排序"<<endl;cout<<"2.直接插入排序"<<endl;cout<<"3.冒泡排序"<<endl;cout<<"4.快速排序"<<endl;cout<<"5.兩路合并排序"<<endl;cout<<"6.退出"<<endl;this->switcha();template <c
16、lass T>void Menu<T>:childmenu()cout<<"-"<<endl;cout<<"1.最好情況"<<endl;cout<<"2.最壞情況"<<endl;cout<<"3.平均情況"<<endl;cout<<"4.返回主菜單"<<endl;cin>>b;if(b=4)this->printmenu();template
17、<class T>void Menu<T>:childmenu2()cout<<"-"<<endl;cout<<"1.原始算法"<<endl;cout<<"2.改進(jìn)算法"<<endl;cout<<"3.返回主菜單"<<endl;cin>>c;if(c=3)this->printmenu();template <class T>void Menu<T>:sw
18、itcha()/cout<<"ok"<<endl;cin>>a;switch(a)case 1:this->selectsort();break;/okcase 2:this->insertSort();break;/okcase 3:this->bubbleSort();break;/okcase 4:this->quickSort();break;/okcase 5:this->mergeSort();break;/okcase 6:exit(1);break;default:cout<<&q
19、uot;error"<<endl;this->printmenu();break;template <class T>void printout(T A,int n)/打印數(shù)組,測(cè)試時(shí)用for(int i=0;i<n;i+)cout<<Ai<<" "cout<<endl;template <class T>T *producedate(int x)/產(chǎn)生順序,逆序,隨機(jī)的數(shù)組int i;T *A=new TSIZE;switch(x)case 1:for(i=0;i<SIZE
20、;i+)Ai=i;return A;/順序break;case 2:for(i=SIZE;i>0;i-)Ai-1=SIZE-i;return A;/逆序break;case 3:srand(time(NULL);for(i=0;i<SIZE;i+)Ai=rand()%1000+1;return A;/隨機(jī)break;default:cout<<"error"<<endl;return A;break;template <class T>void Swap(T &a,T &b)/交換2個(gè)元素T temp=a;a=
21、b;b=temp;template <class T>void Menu<T>:bubbleSort()cout<<"冒泡排序"<<endl;this->childmenu();T *A;double duration;clock_t start,finish;start=clock();cout<<"ok"<<endl;for(int i=0;i<TIMES;i+)A=producedate<T>(b);BubbleSort(A,SIZE);delete A
22、;finish=clock();duration=(double)(finish-start)/CLOCKS_PER_SEC;/printout(A,SIZE);cout<<"用時(shí): "<<duration<<endl;system("pause");/delete A;this->bubbleSort();/*ok*/template <class T>void Menu<T>:insertSort()cout<<"直接插入排序"<<endl;
23、this->childmenu();T *A;double duration;/A=producedate<T>(b);/if(A=NULL)cout<<"error"delete A;this->insertSort();/printout(A,SIZE);clock_t start,finish;start=clock();cout<<"ok"<<endl;for(int i=0;i<TIMES;i+)A=producedate<T>(b);InsertSort(A,SIZ
24、E);delete A;finish=clock();duration=(double)(finish-start)/CLOCKS_PER_SEC;/printout(A,SIZE);cout<<"用時(shí): "<<duration<<endl;system("pause");/delete A;this->insertSort();template <class T>void Menu<T>:mergeSort()/this->childmenu();cout<<"
25、;合并排序"<<endl;cout<<"直接用隨機(jī)數(shù)據(jù)測(cè)試"<<endl;T *A;double duration;clock_t start,finish;start=clock();cout<<"ok"<<endl;for(int i=0;i<TIMES;i+)A=producedate<T>(3);MergeSort(A,SIZE);delete A;finish=clock();duration=(double)(finish-start)/CLOCKS_PE
26、R_SEC;/printout(A,SIZE);cout<<"用時(shí): "<<duration<<endl;system("pause");/delete A;this->printmenu();/*ok*/template<class T>void Menu<T>:quickSort()this->childmenu2();T *A;double duration;clock_t start,finish;if(c=1)cout<<"原始快速排序"&l
27、t;<endl;cout<<"直接用隨機(jī)數(shù)據(jù)測(cè)試"<<endl;start=clock();cout<<"ok"<<endl;for(int i=0;i<TIMES;i+)A=producedate<T>(3);quick(A,SIZE);delete A;finish=clock();duration=(double)(finish-start)/CLOCKS_PER_SEC;cout<<"用時(shí): "<<duration<<e
28、ndl;system("pause");this->quickSort();else if(c=2)cout<<"改進(jìn)的快速排序"<<endl;cout<<"直接用隨機(jī)數(shù)據(jù)測(cè)試"<<endl;/*A=producedate<T>(3);printout(A,SIZE);quick(A,SIZE);printout(A,SIZE);delete A;this->printmenu();*/T *A;start=clock();cout<<"ok"<<endl;for(int i=0;i<TIMES;i+)A=producedate<T>(3);quick(A,SIZE);delete A;finish=clock();duration=(double)(finish-start)/CLOCKS_PER_SEC;cou
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 鐵路旅客運(yùn)輸服務(wù)出站服務(wù)80課件
- 活動(dòng)演出保證金協(xié)議
- 搜救雷達(dá)應(yīng)答器SARTGMDSS綜合業(yè)務(wù)課件
- 鐵路班組管理班組安全管理課件
- 特種貨物運(yùn)輸車輛運(yùn)用與管理課件
- 鐵路路基與軌道64課件
- 《GB 14891.7-1997輻照冷凍包裝畜禽肉類衛(wèi)生標(biāo)準(zhǔn)》(2025版)深度解析
- 中華文化課件下載
- 大學(xué)生職業(yè)規(guī)劃大賽《社會(huì)體育指導(dǎo)與管理專業(yè)》生涯發(fā)展展示
- 中專傳統(tǒng)文化課件
- T∕HGJ 12400-2021 石油化工儀表線纜選型設(shè)計(jì)標(biāo)準(zhǔn)
- T-CBIA 009-2022 飲料濃漿標(biāo)準(zhǔn)
- 2023年四川省遂寧市經(jīng)開區(qū)社區(qū)工作人員(綜合考點(diǎn)共100題)模擬測(cè)試練習(xí)題含答案
- 化工原理天大版5.1蒸發(fā)
- 《冷鏈物流管理》教學(xué)大綱
- 事故隱患內(nèi)部舉報(bào)獎(jiǎng)勵(lì)制度
- 礦山地質(zhì)環(huán)境監(jiān)測(cè)信息平臺(tái)
- GB/T 44562-2024航空用鈦合金100°沉頭大底腳螺紋抽芯鉚釘
- 2024年浙江省初中學(xué)業(yè)水平考試社會(huì)試題
- 建筑智能化配管-隱蔽工程檢查驗(yàn)收記錄
- 在建工程評(píng)估報(bào)告
評(píng)論
0/150
提交評(píng)論