avatar
饶毅的comments# Biology - 生物学
c*r
1
问了一个链表,1->2->3->4->5, 每两个交换,2->1->4->3->5,如果单数
情况返回最后一个。要求recursive和iterative两种方法
这个如何recursive?
avatar
T*D
2
From Nature News
“That Tu won the Nobel prize is "great news", says Yi Rao, a neuroscientist
at Peking University in Beijing who has researched the discovery of
artemisinin. "I’m very happy about this. She totally deserves it.”
But there has been some controversy over credit for the discovery, Rao
points out, so Tu has never won a major award in China. She has not been
elected to either of China's major academies — neither the Chinese Academy
of Sciences nor the Chinese Academy of Engineering.
“Though other people were involved, Tu was clearly the undisputed leader,”
says Rao. “But she’s never been given fair recognition within China.””
avatar
P*l
3
不到两个就停下来
够了的话,每次处理完两个,函数call第三个node就行了吧
avatar
t*k
4
But she’s never been given fair recognition within China
大家最爱这句吧
avatar
l*a
5
void Swap2Nodes(element ** head)
{
current=*head;
if(current==null||current->next==null) return;
element *next,*nextnext;
next=current->next;
nextnext=next->next;
Swap2Nodes(&nextnext);
*head=next;
next->next=current;
current->next=nextnext;
return;
}

【在 c*******r 的大作中提到】
: 问了一个链表,1->2->3->4->5, 每两个交换,2->1->4->3->5,如果单数
: 情况返回最后一个。要求recursive和iterative两种方法
: 这个如何recursive?

avatar
s*y
6
这算台下的科学表演艺术家对台上的科学表演艺术家的影射吗

【在 t******k 的大作中提到】
: But she’s never been given fair recognition within China
: 大家最爱这句吧

avatar
Y*B
7
是只换数据还是换node的顺序?
avatar
T*D
8
...who has researched the discovery of artemisinin. ...
饶毅功不可没

neuroscientist
Academy

【在 T*******D 的大作中提到】
: From Nature News
: “That Tu won the Nobel prize is "great news", says Yi Rao, a neuroscientist
: at Peking University in Beijing who has researched the discovery of
: artemisinin. "I’m very happy about this. She totally deserves it.”
: But there has been some controversy over credit for the discovery, Rao
: points out, so Tu has never won a major award in China. She has not been
: elected to either of China's major academies — neither the Chinese Academy
: of Sciences nor the Chinese Academy of Engineering.
: “Though other people were involved, Tu was clearly the undisputed leader,”
: says Rao. “But she’s never been given fair recognition within China.””

avatar
q*x
9
i prefer:
Node* swap2nodes(Node* head);

【在 l*****a 的大作中提到】
: void Swap2Nodes(element ** head)
: {
: current=*head;
: if(current==null||current->next==null) return;
: element *next,*nextnext;
: next=current->next;
: nextnext=next->next;
: Swap2Nodes(&nextnext);
: *head=next;
: next->next=current;

avatar
s*y
10
我觉得饶毅对老太太的获奖是有很大的贡献的。他对这段科学史的考证解答了
很多问题,包括屠呦呦在那个项目里到底是起什么作用这个关键问题。

【在 T*******D 的大作中提到】
: ...who has researched the discovery of artemisinin. ...
: 饶毅功不可没
:
: neuroscientist
: Academy

avatar
q*x
11
node.

【在 Y**B 的大作中提到】
: 是只换数据还是换node的顺序?
avatar
O*a
12
推老太太得奖,苏新专也起了很大作用吧。
Miller Louis和苏新专一起推她得拉斯克奖。

【在 s******y 的大作中提到】
: 我觉得饶毅对老太太的获奖是有很大的贡献的。他对这段科学史的考证解答了
: 很多问题,包括屠呦呦在那个项目里到底是起什么作用这个关键问题。

avatar
l*a
13
that is fine
then u need two node*

【在 q****x 的大作中提到】
: i prefer:
: Node* swap2nodes(Node* head);

avatar
o*4
14
要是饶毅早几十年考证一下胰岛素合成的问题,恐怕中国早就得诺贝尔奖了吧。

【在 s******y 的大作中提到】
: 我觉得饶毅对老太太的获奖是有很大的贡献的。他对这段科学史的考证解答了
: 很多问题,包括屠呦呦在那个项目里到底是起什么作用这个关键问题。

avatar
q*x
15
one ah. 7 line is enough.
Node* swap2(Node* head)
{
if ( head != NULL && head->next != NULL ) {
Node* t = head->next;
head->next = swap2(t->next);
t->next = head;
head = t;
}
return head;
}

【在 l*****a 的大作中提到】
: that is fine
: then u need two node*

avatar
h*a
16
不会,胰岛素合成早就有而且也得过诺贝尔了,中国是合成的胰岛素晶体,也就是提纯
高一点的胰岛素,并非原创,而且当时也已经由国际上知名科学家钱三强,杨振宁以及
也受诺贝尔奖委员会邀请推荐候选人的美籍华裔科学家王浩联合推荐,比现在的饶毅不
知强多少倍,但当年因为原创性不足而败给了布朗和维提希,无缘诺贝尔

【在 o**4 的大作中提到】
: 要是饶毅早几十年考证一下胰岛素合成的问题,恐怕中国早就得诺贝尔奖了吧。
avatar
w*x
17
NODE* SwapNodes(NODE* pHead)
{
assert(NULL != pHead);
if (pHead->pNext == NULL)
return pHead;
NODE* pRet = pHead->pNext;
NODE* pIter = pHead;
NODE* pPrev = NULL;
while (pIter != NULL && pIter->pNext != NULL)
{
if (NULL != pPrev)
pPrev->pNext = pIter->pNext;
NODE* pTmp = pIter->pNext->pNext;
pIter->pNext->pNext = pIter;
pIter->pNext = pTmp;
pPrev = pIter;
pIter = pIter->pNext;
}
return pRet;
}
avatar
o*4
18
不是说中国提名人太多了,所以没得嘛?

【在 h**********a 的大作中提到】
: 不会,胰岛素合成早就有而且也得过诺贝尔了,中国是合成的胰岛素晶体,也就是提纯
: 高一点的胰岛素,并非原创,而且当时也已经由国际上知名科学家钱三强,杨振宁以及
: 也受诺贝尔奖委员会邀请推荐候选人的美籍华裔科学家王浩联合推荐,比现在的饶毅不
: 知强多少倍,但当年因为原创性不足而败给了布朗和维提希,无缘诺贝尔

avatar
s*f
19
Node* SwapNeibor(Node *head){
if (!head || !head->next)
return head;
Node *p = head->next;
Node *q = p->next;
p->next = head;
head->next = SwapNeibor(q);
return p;
}

【在 c*******r 的大作中提到】
: 问了一个链表,1->2->3->4->5, 每两个交换,2->1->4->3->5,如果单数
: 情况返回最后一个。要求recursive和iterative两种方法
: 这个如何recursive?

avatar
i*9
20
恩, 顺便考证一下
火药 -> 诺贝尔化学奖
造纸术,印刷术 -> 诺贝尔文学奖
指南针 -> 诺贝尔物理学奖

【在 o**4 的大作中提到】
: 要是饶毅早几十年考证一下胰岛素合成的问题,恐怕中国早就得诺贝尔奖了吧。
avatar
o*4
21
诺贝尔配不上这几大发明吧。

【在 i***9 的大作中提到】
: 恩, 顺便考证一下
: 火药 -> 诺贝尔化学奖
: 造纸术,印刷术 -> 诺贝尔文学奖
: 指南针 -> 诺贝尔物理学奖

avatar
O*a
22
不是。这是一个广泛的误解
饶毅指导一个科学史专业学生写过一本书,考证了来龙去脉。熊维民(?)
最后只提名了王应睐一个人。
结论是原创性不够。
书写的有趣,可读性强,查阅了原始资料和通信
推荐你读
[在 oct4 (hi) 的大作中提到:]
:不是说中国提名人太多了,所以没得嘛?

:...........
avatar
h*a
23
那是胡说八道,别听袁腾飞这样的无赖造谣

【在 o**4 的大作中提到】
: 不是说中国提名人太多了,所以没得嘛?
avatar
o*4
24
书名?

【在 O**********a 的大作中提到】
: 不是。这是一个广泛的误解
: 饶毅指导一个科学史专业学生写过一本书,考证了来龙去脉。熊维民(?)
: 最后只提名了王应睐一个人。
: 结论是原创性不够。
: 书写的有趣,可读性强,查阅了原始资料和通信
: 推荐你读
: [在 oct4 (hi) 的大作中提到:]
: :不是说中国提名人太多了,所以没得嘛?
: :
: :...........

avatar
e*r
25
难怪,现在网易关于屠的新闻下面的评论都要审核。

neuroscientist
Academy

【在 T*******D 的大作中提到】
: From Nature News
: “That Tu won the Nobel prize is "great news", says Yi Rao, a neuroscientist
: at Peking University in Beijing who has researched the discovery of
: artemisinin. "I’m very happy about this. She totally deserves it.”
: But there has been some controversy over credit for the discovery, Rao
: points out, so Tu has never won a major award in China. She has not been
: elected to either of China's major academies — neither the Chinese Academy
: of Sciences nor the Chinese Academy of Engineering.
: “Though other people were involved, Tu was clearly the undisputed leader,”
: says Rao. “But she’s never been given fair recognition within China.””

avatar
D*p
26
又不是他一个人这么说……

【在 h**********a 的大作中提到】
: 那是胡说八道,别听袁腾飞这样的无赖造谣
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。