gpt4 book ai didi

c - Qsort 不排序 char * 数组

转载 作者:太空宇宙 更新时间:2023-11-04 08:08:38 25 4
gpt4 key购买 nike

我遇到了一个问题,即 qsort 有时会对东西进行排序,有时却不会。这是我的代码

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


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

int main (){
int ile = 0;
scanf("%d", &ile);
const char * slowa[ile];
for(int j = 0; j <= ile; j++){
char string[30];
gets(string);
char * toAdd = strdup(string);
slowa[j] = toAdd;
}
qsort (slowa, ile, sizeof (const char *), compare);

for (int i = 0; i <= ile; i++) {
printf ("%s\n",slowa[i]);
}
return 0;
}

它适用于示例 { ccc,bbb,aaa } 但不适用于示例 { afdg ,sspade , trekk, bbre, lol}

最佳答案

scanf 在输入缓冲区中留下了一个换行符,由第一个 gets 读取。

这两个循环迭代次数过多,超出了数组的范围。我猜你这样做是为了获得正确数量的表观输入。

所以在第一个循环之前清除输入,也许用一个虚拟字符串读取,并更正循环控制。

另请注意,gets() 现在已过时。

关于c - Qsort 不排序 char * 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40971849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com