C++单链表的递归逆转(笔试一般用到)
/*单链表的递归逆转, 笔试一般希望你递归法,简洁易懂*/
struct Note
{
int x = 0;
Note* next = nullptr;
};
Note* ReverseNote(Note* p)
{
if (p == nullptr || p->next == nullptr)
return p;
Note* t = ReverseNote(p->next);
p->next->next = p;
p->next = nullptr;
return t;
}
本文来自博客园,作者:{archer},转载请注明原文链接:https://www.cnblogs.com/archer-mowei/p/14882292.html