2Programmer
Вполне можно обойтись одним параметром:
Код:
Node *ReverseList(Node *current)
{
Node *temp;
if(current->next==NULL)
temp= current;
else
{
temp = ReverseList(current->next);
current->next->next=current;
current->next=NULL;
}
return temp;
}