QuickSort算法比较次数

时间:2016-07-24 03:35:39

标签: c quicksort

我一直在Coursera上课,我们有一项任务是计算QuickSort在10,000个数字阵列上进行的比较次数。

#include <stdio.h>
#define SIZE 10000

int ComparsionCount = 0;

void swap(int a[], int i, int j) {
        int temp = a[j];
        a[j] = a[i];
        a[i] = temp;
}
int partition(int a[], int l, int r){
        int p = a[l];
        int i = l + 1;
        int j;
        for (j = l + 1; j <= r; j++) {
            if (a[j] < p) {
                swap(a, j, i);
                i++;
            }
        }
        swap(a, l, i - 1);
        return (i - 1);
}
void add(int i) {
    ComparsionCount += i;
}

int QuickSort(int a[], int l, int r){
    int pivot;
    if (r > 1) {
        add(r - 1);
        pivot = partition(a, l, r);
        QuickSort(a, l, pivot - 1);
        QuickSort(a, pivot + 1, r);
    }
    return pivot;
}

int main() {
    FILE *fr;
    int arr[SIZE];
    int i = 0;
    int elapsed_seconds;
    char line[80];

    fr = fopen("QuickSort.txt", "r");
    while (fgets(line, 80, fr) != NULL)
    {
         /* get a line, up to 80 chars from fr.  done if NULL */
         sscanf (line, "%ld", &elapsed_seconds);
         /* convert the string to a int */
         arr[i] = atoi(line);
         i++;
    }
    fclose(fr);  /* close the file prior to exiting the routine */
    printf("%d\n",QuickSort(arr,0,SIZE-1));
}

我收到了分段错误。我已经发现问题在于QuickSort的两次递归调用。

我不知道如何解决这个问题,你的帮助会受到很多赞赏 提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为您应该在分区函数中添加代码,如下所示:

for (j = l + 1; j <= r; j++) {
    count++;
    if (a[j] < p) {
    ...
}

注意:count是一个初始化为0的全局变量。