Printer_Helper是一个递归函数,用于打印链表的内容。
struct Node
{
string data;
Node *next;
}
void List::print()
{
Print_Helper(head);
}
如何为递归函数编写方法定义?
答案 0 :(得分:0)
基本上递归就像这样:
在这种情况下,它的工作方式如下:
print content of current node
if there are any child nodes:
for each child node:
call this function with the child node