我一直在计算这些排序算法的持续时间。我将所有排序方法循环了 2000 次,然后将总持续时间除以 2000 以获得适当的持续时间值。问题是; 它没有显示排序方法的特定代码部分所花费的确切时间值。我的意思是duration
变量显示通过程序流增加的值。例如,对于N = 10000
,insertionSort()
给出 0.000635,mergeSort()
给出 0.00836 并heapSort()
给出 0.018485,当我改变这些的顺序时,duration
仍然通过程序上升,不管算法类型如何。我尝试为每个过程提供不同的持续时间值,但这不起作用。有人可以帮我理解这个问题还是有其他时间测量风格?
对不起,如果这是一个愚蠢的问题并且我的语法不好。
int main(){
srand(time(NULL));
int N, duration;
cout << endl << "N : ";
cin >> N; // N is array sze.
cout << endl;
// a4 would be the buffer array (for calculating proper duration).
int *a1 = new int[N];
int *a2 = new int[N];
int *a3 = new int[N];
int *a4 = new int[N];
cout << endl << "Unsorted array : " << endl;
for (int i = 0; i < N; i++){
a4[i] = rand() % 100;
cout << a4[i] << " ";
}
/*------------------------------------------------------------------------------*/
cout << endl << endl <<"Sorting with Insertion Sort, please wait..." << endl;
for(int i = 0; i < 2000; i++){
a1 = a4;
duration = clock();
insertionSort(a1, N - 1);
duration += clock() - duration;
}
cout << endl << "Insertion sort : " << endl;
print(a1, N);
cout << endl << endl << "Approximate duration for Insertion Sort : ";
cout << (double) (duration / 2000) / CLOCKS_PER_SEC;
cout << " s." << endl;
/*------------------------------------------------------------------------------*/
cout << endl << endl << "Sorting with Merge Sort, please wait..." << endl;
for(int i = 0; i < 2000; i++){
a2 = a4;
duration = clock();
mergeSort(a2, 0, N - 1);
duration += clock() - duration;
}
cout << endl << "Merge sort : " << endl;
print(a2, N);
cout << endl << endl << "Approximate duration for Merge Sort : ";
cout << (double) (duration / 2000) / CLOCKS_PER_SEC;
cout << " s."<< endl << endl;
/*------------------------------------------------------------------------------*/
cout << endl << endl << "Sorting with Heap Sort, please wait..." << endl;
for(int i = 0; i < 2000; i++){
a3 = a4;
duration = clock();
heapSort(a3, N);
duration += clock() - duration;
}
cout << endl << "Heap sort : " << endl;
print(a3, N);
cout << endl << endl << "Approximate duration for Heap Sort : ";
cout << (double) (duration / 2000) / CLOCKS_PER_SEC;
cout << " s."<< endl << endl;
return 0;
}