gpt4 book ai didi

c - return 并没有破坏我在 c 中的递归函数

转载 作者:行者123 更新时间:2023-11-30 18:15:23 24 4
gpt4 key购买 nike

struct Node *xFromEnd(struct Node *pHead, int x)
{
static int temp = 1;

if (pHead->next != NULL)
xFromEnd(pHead->next, x);
if ((temp++) == x)
return pHead;
}

满足条件时如何跳出该函数?返回只是在调用堆栈上进一步向上(转到其上一个函数调用),而不是退出并转到 main。我怎样才能做到这一点?

最佳答案

struct Node *xFromEnd(struct Node *pHead, int x){
static int temp = 1;//but can not reset !!

if(pHead == NULL)
return NULL;
struct Node *p = xFromEnd(pHead->next, x);
if (p == NULL){
return (x == temp++) ? pHead : NULL;
}
return p;
}

关于c - return 并没有破坏我在 c 中的递归函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29021299/

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