gpt4 book ai didi

c - 这个打印函数如何将指针移动到链表中的下一项?

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

struct ll {
int num;
struct ll *next;
};

struct ll *head;

main() {
/* code to assign head pointer some memory */

print(head->next);
}

我读到上面代码中的 print() 函数将指针移动到下一项。这如何将头指针移动到下一个项目?

最佳答案

print() 必须类似于:

print(struct ll *foo) {
// code
head = head->next;
// other code
}

请注意,这在很多方面都不是好的代码,但这就是它如何移动 head 以指向下一个项目。

关于c - 这个打印函数如何将指针移动到链表中的下一项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7856460/

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