gpt4 book ai didi

c - 如何在 c 中将链表中的所有字符串大写?

转载 作者:行者123 更新时间:2023-12-02 02:55:24 24 4
gpt4 key购买 nike

<分区>

我试图将链表中的所有字符串大写,但我遇到了一个我无法弄清楚的段错误。

这是我目前的代码:

wordnode_t *upperAll(wordnode_t * indexWords){
wordnode_t *upperIndexWords = NULL;
wordnode_t *ptr = indexWords;
while(ptr){
char *word = ptr -> w;
int i = 0;
for (i=0; word[i]; i++){
word[i] = toupper((unsigned char)word[i]);
}
upperIndexWords = add_end(indexWords, new_word(word, 0));
ptr = ptr -> next;
}
return upperIndexWords;
}

其中wordnode_t是链表中的节点,w是节点中的字符串。

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