gpt4 book ai didi

c++ - 我在使用 std::stack 从递归函数中检索值时遇到问题

转载 作者:太空狗 更新时间:2023-10-29 23:38:02 25 4
gpt4 key购买 nike

感谢我在这篇文章中得到的帮助:

How do I use "this" in a member function?

我有一个漂亮、简洁的递归函数来按后缀顺序遍历树:

void Node::postfix()
{
if (left != __nullptr) { left->postfix(); }
if (right != __nullptr) { right->postfix(); }
cout<<cargo<<"\n";
return;
};

现在我需要评估返回的值和运算符。我的问题是如何找回

他们。我尝试了 std::stack:

#include <stack> 
stack <char*> s;
void Node::postfix()
{
if (left != __nullptr) { left->postfix(); }
if (right != __nullptr) { right->postfix(); }
s.push(cargo);
return;
};

但是当我试图在 main() 中访问它时

while (!s.empty())
{
cout<<s.top<<"\n";
s.pop;
}

我得到了错误:

'std::stack<_Ty>::top':函数调用缺少参数列表;使用 '&std::stack<_Ty>::top' 来创建

指向成员的指针

我卡住了。

另一个问题很快就会跟进。

最佳答案

它们是成员函数:

s.top()
s.pop()
^ need parentheses to call a function

这就是错误提示“函数调用缺少参数列表”时的含义。参数列表(在本例中为空,因为函数不带参数)和括号丢失。

关于c++ - 我在使用 std::stack 从递归函数中检索值时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2767599/

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