- struct IntNode* reverse(struct IntNode* h) //h为链表头指针
- {
- struct IntNode *s, *s1;
- s = h;
- h = NULL;
- while (s != NULL)
- {
- s1 = s;
- s = s->next;
- s1->next = h;
- h = s1;
- }
- return h;
- }
- struct IntNode* reverse(struct IntNode* h) //h为链表头指针
- {
- struct IntNode *s, *s1;
- s = h;
- h = NULL;
- while (s != NULL)
- {
- s1 = s;
- s = s->next;
- s1->next = h;
- h = s1;
- }
- return h;
- }
下一篇:我的友情链接
单链表逆序
得到一个比较低的分数。如何在不使用额外
将单链表逆序输出,有好几种思路。 比如:将单链表逆序后输出;或者顺序rse(L->next); }
仅做学习记录。
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M