c++ - 使用 qsort 对字符串进行排序不起作用

标签 c++ c qsort

我有一个程序,它询问几个字符串并对它们进行排序。 我的代码是:

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

#define MAX_STR_LEN 256

int myStrCmp (const void * a, const void * b)
{
    return strcmp((const char *)a, (const char *)b);
}

int main(void) 
{
    int strNum; // expected number of input strings
    int strCnt; // counter of strings
    char ** storage; // pointr to the memory when strings are stored
    char strBuf[ MAX_STR_LEN]; // buffer for strings
    char * strPtr; 
    // input of strings number
    do{
        printf("How many strings will be entered: ");
        while( scanf("%d", &strNum) != 1)
        {
            printf("ERROR: Not number was entered!\n");
            while( getchar() != '\n' );
            printf("Please enter a number: ");
        }
        if( strNum < 2 )
        {
            printf("ERROR: Number less than 2 was entered!\n");
        }
        while( getchar() != '\n' );
    }
    while(strNum < 2);
    // allocation of memory for pointers
    storage = (char **) calloc(strNum, sizeof(char*) );
    if( storage == NULL )
    {
        printf("ERROR: Unexpected problems with memory allocation!\n");
        return 1;
    }
    // input of strings
    for( strCnt = 0; strCnt < strNum; strCnt++)
    {
        printf("Enter string #%d:\n", strCnt + 1);
        fgets(strBuf,  MAX_STR_LEN, stdin);
        strPtr = strchr(strBuf, '\n');
        if( strPtr )
        {
            *strPtr = '\0';
        }
        else
        {
            strBuf[ MAX_STR_LEN - 1] = '\0';
        }
        // allocation memory for particular string
        storage[strCnt] = (char *) malloc(strlen(strBuf) + 1);
        if(storage[strCnt] == NULL)
        {
            printf("ERROR: Unexpected problems with memory allocation!\n");
            return 2;
        }
        // move string to dynamic memory 
        strcpy(storage[strCnt], strBuf);
    }
    // sort the strings
    qsort(storage, strNum, sizeof(char**), myStrCmp);
    // output the result
    printf("\nSorted strings:\n");
    for( strCnt = 0; strCnt < strNum; strCnt++)
    {
        printf("%s\n", storage[strCnt]);
    }
    return 0;
}

最简单的测试显示了问题:

How many strings will be entered: 3
Enter string #1:
ddd
Enter string #2:
aaa
Enter string #3:
ccc

Sorted strings:
ddd
aaa
ccc

我尝试过Visual C++和gcc,但结果是一样的。请告诉我代码中有什么问题?

最佳答案

问题出在 myStrCmp 函数中。

因为ab不是简单数组中的元素,而是指针数组中的元素,因此它们的类型必须是char **并且比较两个元素的函数必须如下:

int myStrCmp (const void * a, const void * b)
{
    return strcmp(*(const char **)a, *(const char **)b);
}

关于c++ - 使用 qsort 对字符串进行排序不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29422008/

相关文章:

c++ - 为什么 qmake 将所有对象 (.o) 文件放到一个目录中?

c - 警告:忽略 'system' c的返回值

c - 如何显示字母在矩阵中的位置?

c - 如何使用 C 中的整数对带有字符串的结构进行排序?

Python - 为什么它不发送值 incomingState?

c++ - `std::find()`是否短路?

c++ - dos.h 是一个什么样的库(静态的还是动态的)?

c - 用c表示内存

c - 尝试使用 C qsort 函数时出现问题

c - 如何根据另一个数组的数字顺序对数组进行排序?