码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 237 Delete Node in a Linked List

时间:2016-01-15 14:22:03      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

如题 删除是要注意让现在的链表等于下一个链表的值

1 class Solution {
2 public:
3     void deleteNode(ListNode* node) {
4         ListNode *nextnode = node ->next;
5         *node = *nextnode;
6         node->next = nextnode ->next;
7         delete nextnode;
8     }
9 };

 

Leetcode 237 Delete Node in a Linked List

标签:

原文地址:http://www.cnblogs.com/onlyac/p/5132975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!