c - Malloc 示例因 qsort 崩溃?

标签 c malloc qsort

嘿,我发现了一个使用 malloc 与结构数组的示例,它非常适合我想要做的事情,但是当我将它与 qsort 结合使用时,我需要按结构的“数字”值进行排序我运气不太好。该代码符合要求,没有错误,但实际上并没有运行,只是崩溃了。由于我是初学者,我不知道是什么导致了这个问题。如果有人能对此有所启发,那就太好了,谢谢!

// Example code from "a tutorial on 'dynamic' arrays in C"
// http://fydo.net

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct DATA{
    char *name;
    int number;
} DATA;

DATA    *the_array = NULL;
int     num_elements = 0; // To keep track of the number of elements used
int     num_allocated = 0; // This is essentially how large the array is
int  compare(struct DATA *, struct DATA *);
typedef int (*compfn)(const void*, const void*);

int compare(struct DATA *elem1, struct DATA *elem2)
{
   if ( elem1->number < elem2->number)
      return -1;

   else if (elem1->number > elem2->number)
      return 1;

   else
      return 0;
}



int AddToArray (DATA item)
{
    if(num_elements == num_allocated) { // Are more refs required?

        // Feel free to change the initial number of refs and the rate at which refs are allocated.
        if (num_allocated == 0)
            num_allocated = 3; // Start off with 3 refs
        else
            num_allocated *= 2; // Double the number of refs allocated

        // Make the reallocation transactional by using a temporary variable first
        void *_tmp = realloc(the_array, (num_allocated * sizeof(DATA)));

        // If the reallocation didn't go so well, inform the user and bail out
        if (!_tmp)
        {
            fprintf(stderr, "ERROR: Couldn't realloc memory!\n");
            return(-1);
        }

        // Things are looking good so far, so let's set the
        the_array = (DATA*)_tmp;
    }

    the_array[num_elements] = item;
    num_elements++;

    return num_elements;
}

int main()
{
    // Some data that we can play with
    char *names[6] = { "Steve", "Bill", "George", "fydo", "Dave", "Jim" };
    int numbers[6] = { 42, 33, 15, 74, 5, 20 };
    int i;

    // Populate!
    for (i = 0; i < 6; i++)
    {
        DATA temp;

        temp.name = malloc((strlen(names[i]) + 1) * sizeof(char));
        strncpy(temp.name, names[i], strlen(names[i]) + 1);
        temp.number = numbers[i];

        if (AddToArray(temp) == -1) // If there was a problem adding to the array,
            return 1;               // we'll want to bail out of the program. You
                                    // can handle it however you wish.
    }

    //sort by number:
    qsort((void *) &the_array, 6, sizeof(struct DATA), (compfn)compare );

    // Regurgitate!
    for (i = 0; i < 6; i++)
    {
        printf("%s's number is %d!\n", the_array[i].name, the_array[i].number);
    }

    // Deallocate!
    for (i = 0; i < 6; i++)
    {
        free(the_array[i].name);
    }

    free(the_array);

    // All done.
    return 0;
}

最佳答案

您传递数组的方式错误。

应该是

qsort(the_array, 6, sizeof(struct DATA), (compfn)compare );

qsort期望第一个参数是一个指向要排序的数据开始位置的指针,这是 the_array 而不是它的地址 &the_array,因为您已经这样声明了它

DATA    *the_array = NULL;

输出将是:

Dave's number is 5!
George's number is 15!
Jim's number is 20!
Bill's number is 33!
Steve's number is 42!
fydo's number is 74!

发生的情况是qsort认为数组从 the_array 地址开始,并开始访问不允许的其他内存区域。

编辑

我已经尝试过 4000 个单词,但无法让它崩溃,这是我修改代码以从文件读取的方法,( strdup 非常方便,相当于 malloc + strcpy)

char name[100];
while(1 == scanf("%s", name)) {
    DATA temp;
    temp.name = strdup(name);
    temp.number = rand();
    if (AddToArray(temp) == -1) 
        return 1;               
}

执行如下:

out.exe < lorem.txt

数据已正确排序、打印并释放

关于c - Malloc 示例因 qsort 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15909386/

相关文章:

c - 用纯 C 代码读取 Microsoft Outlook MSG 内容

C 不为新的 char 数组分配内存

c - 在 C 中带有参数的 free() 语法

C:使用 qsort 对二维数组进行逐行排序

C - qsort 将错误的指针发送到比较器函数?

c - printf如何改变函数的返回值?

java - 图像比较算法

java - Cap'n Proto - 在 Java 中查找消息大小

c - 具有多维数组的 malloc

c++ - 从文件中使用 C++ 中的分词器?