题解 | #反转链表#

反转链表

http://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca

单链表的翻转 1、head节点存储数据 2、head节点不存储数据 struct ListNode * reverList(struct ListNode *pHead) { struct ListNode *curr = NULL; struct ListNode *pre = NULL; struct ListNode *next = NULL; temp = pHead; while(temp != NULL) { next = temp->next; //保存好下一个节点 temp->next = pre; //该变当前节点的指向 //向后移项 pre = temp; temp = next; } return pre; }

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-09 12:20
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-11 11:16
点赞 评论 收藏
分享
舂锋:不能投什么岗都用一份简历,一般都是要看企业的岗位需求来写职业技能或者是项目经历,跟岗位相关的就写多一点。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务