gpt4 book ai didi

c++ - 如何使用递归返回单链表中的倒数第 n 个元素?

转载 作者:行者123 更新时间:2023-11-30 00:51:47 25 4
gpt4 key购买 nike

所以我有这个递归解决方案来打印列表末尾的第 n 个元素:

void print_nth_from_last_rec(Node* node, int n) {

static int count { 0 };

if (!node) return;

print_nth_from_last_rec(node->next, n);

if (++count == n)
cout << node->data;

}

但我不知道如何使用递归返回该元素。可能吗?

尝试:

  • 如果我有一个静态的 Node* 将被分配到 (++count == n) 时,我可以做到这一点:

    Node* get_nth_from_last_rec(Node* node, int n) {

    static int count { 0 };
    static Node* ret{ nullptr };

    if (node) {

    get_nth_from_last_rec(node->next, n);

    if (++count == n)
    ret = node;
    }

    return ret;
    }
  • 也可以传入对 out 节点的引用并将第 n 个元素分配给它。

但是有没有更好的办法呢?这些静力学对我来说看起来不太干净。

最佳答案

Node* get_nth_from_last_rec(Node* node, int& n)
{
if (node)
{
Node* result = get_nth_from_last_rec(node->next, n);
if (result)
return result;
else if (! n--)
return node;
}
return nullptr;
}

关于c++ - 如何使用递归返回单链表中的倒数第 n 个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20600677/

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