Redian新闻
>
攒人品推荐审稿。发育毒理学,细胞周期和凋亡方向。 (转载)
avatar
攒人品推荐审稿。发育毒理学,细胞周期和凋亡方向。 (转载)# EB23 - 劳工卡
f*e
1
板上大牛能不能给贴个代码啊,反转链表用递归咋写啊?谢谢啊谢谢
avatar
x*6
2
【 以下文字转载自 Biology 讨论区 】
发信人: xiao170216 (xiaofeixiang), 信区: Biology
标 题: 攒人品推荐审稿。发育毒理学,细胞周期和凋亡方向。
发信站: BBS 未名空间站 (Wed Dec 18 11:16:22 2013, 美东)
请将姓名,简单研究背景和联系方式发站内信。祝好运!
avatar
h*c
3
// input is the head of the list
// return the new head of reverse list
List* reverse(List* head)
{
if(!head || !head->next)
return head;
List* t = head->next;
head->next = NULL;
List* nhead = reverse(t);
t->next = head;
return nhead;
}

【在 f********e 的大作中提到】
: 板上大牛能不能给贴个代码啊,反转链表用递归咋写啊?谢谢啊谢谢
avatar
x*6
4
已推荐完毕,谢谢。

【在 x********6 的大作中提到】
: 【 以下文字转载自 Biology 讨论区 】
: 发信人: xiao170216 (xiaofeixiang), 信区: Biology
: 标 题: 攒人品推荐审稿。发育毒理学,细胞周期和凋亡方向。
: 发信站: BBS 未名空间站 (Wed Dec 18 11:16:22 2013, 美东)
: 请将姓名,简单研究背景和联系方式发站内信。祝好运!

avatar
e*s
5
帅, 不知道 head->next = NULL; 去掉有没有影响?

【在 h******c 的大作中提到】
: // input is the head of the list
: // return the new head of reverse list
: List* reverse(List* head)
: {
: if(!head || !head->next)
: return head;
: List* t = head->next;
: head->next = NULL;
: List* nhead = reverse(t);
: t->next = head;

avatar
d*e
6
if it's removed, the next of the last node in the new list is not null, but
the previous node instead.

【在 e***s 的大作中提到】
: 帅, 不知道 head->next = NULL; 去掉有没有影响?
avatar
f*t
7
有的,原链表的head的next指针需要通过这条语句设成NULL,中间的node倒无所谓。

【在 e***s 的大作中提到】
: 帅, 不知道 head->next = NULL; 去掉有没有影响?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。