反转链接列表后,头(int main)未更新

时间:2019-05-20 20:51:39

标签: data-structures linked-list

我有以下代码

terrainData.heightmapResolution

主要我用

来称呼它
node* reverse_ll_recr(node* head)
{
if(head->next == NULL) return head;
reverse_ll_recr(head->next);
head->next->next = head;
head->next = NULL;
}

问题是head不会更新,只会打印最后一个元素,因为反转后它指向NULL。有人知道为什么会这样吗?

0 个答案:

没有答案