gpt4 book ai didi

c - 创建链表头的问题

转载 作者:行者123 更新时间:2023-11-30 14:45:53 25 4
gpt4 key购买 nike

我的代码旨在从散列链接列表中读取一系列字符串,将它们全部转换为小写,将它们放入数组中以对它们使用快速排序,然后将它们放入称为字数统计的数据结构中,其中包括单词以及它在文档中出现的次数。目前,当我运行代码时,它可以使用我正在使用的打印语句正确打印出来,但是当我打印出来时,头部始终设置为空。

这是 wordCount 声明:

typedef struct wordCount
{
int count;
char *word;
struct wordCount* next;
} wordCount;

这是应该执行我上面描述的操作的方法段。

else
{
char *toSort[curSize];
int linkedListTraverse = 0; //Array index for each linked list node
while(linkedList != NULL)
{
toSort[linkedListTraverse] = (char*) malloc(sizeof(linkedList->string));
strcpy(toSort[linkedListTraverse],linkedList->string); //Copy the data from the linked list into an array
linkedList = linkedList->next;
linkedListTraverse++;
}
int i = 0;
while(i < curSize) //Convert all of the words to lowercase
{
char* str = toSort[i];
char *p;
for (p = str; *p != '\0'; p++)
*p = (char)tolower(*p);
i++;
}
i = 0;
qsort(toSort, curSize, sizeof(char*), stringCmpFunc); //Sort the current node
while(i < curSize)
{
printf("%s\n", toSort[i]);
i++;
}
int curWordIndex = 0;
int checkWordIndex = 1;
wordCount *wordHead = NULL;
wordCount *curWord = wordHead;
while(curWordIndex < curSize)
{
curWord = (wordCount*) malloc(sizeof(wordCount));
curWord->word = toSort[curWordIndex]; //Set the word
curWord->count = 1; //Start the count out at 1
while(strcmp(toSort[curWordIndex], toSort[checkWordIndex]) == 0) //While the two words are equal
{
checkWordIndex++; //Advance the leading index check
curWord->count++;
if(checkWordIndex >= curSize) //If the leading index goes beyond the array bounds
break;
}
if(checkWordIndex < curSize)
{
curWordIndex = checkWordIndex;
checkWordIndex = curWordIndex + 1;
}
if(checkWordIndex >= curSize) //If the leading index goes beyond the array bounds
{
if(strcmp(curWord->word, toSort[curWordIndex]) != 0)
{
printf("%s %d\n", curWord->word, curWord->count);
curWord = curWord->next;
curWord = (wordCount*) malloc(sizeof(wordCount));
curWord->word = toSort[curWordIndex]; //Set the word
curWord->count = 1; //Start the count out at 1
}
break;
}
//printf("CurWordIndex: %d\n CheckWordIndex: %d\n",curWordIndex, checkWordIndex);
printf("%s %d\n", curWord->word, curWord->count);
curWord = curWord->next; //Advance to the next node in the linked list
}
printf("%s %d\n", curWord->word, curWord->count);

这是只打印 null 的代码段

curWord = wordHead;
while(curWord != NULL)
{
printf("%s %d\n", curWord->word, curWord->count);
curWord = curWord->next;
}

最佳答案

放置

if (wordHead == NULL) { wordHead = curWord; }

之后

curWord = (wordCount*) malloc(sizeof(wordCount));

已更新

这是另一个问题:

curWord = curWord->next;
curWord = (wordCount*) malloc(sizeof(wordCount));

应该是:

curWord->next = (wordCount*) malloc(sizeof(wordCount));
curWord = curWord->next;

注意:请关注rules ,这将有助于我们为您提供帮助。

更新/2

替换这个:

while(curWordIndex < curSize) {
curWord = (wordCount*) malloc(sizeof(wordCount));

这样:

while(curWordIndex < curSize) {
wordCount* tmp = (wordCount*) malloc(sizeof(wordCount));
if (curWord) { curWord->next = tmp; }
curWord = tmp;

关于c - 创建链表头的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52695575/

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