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

LeetCode237:Delete Node in a Linked List

时间:2015-07-24 16:13:35      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.

Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4 after calling your function.

给定链表中的一个节点,删除该节点。

正常情况下链表中节点的删除是需要知道被删除节点的前一个节点的,将它前一个节点的next指针指向它的下一个节点,这个节点就从链表中删除了。但是这里没有提供前一个节点,而是提供了当前节点。

一个技巧就是用它的下一个节点的值覆盖当前节点的值,然后将下一个节点删除掉,这样就等效删除了当前节点。但是需要注意这种方法不能删除尾节点(题目中也给出了这个条件)。

技术分享

runtime:16ms

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    void deleteNode(ListNode* node) {
        node->val=node->next->val;
        node->next=node->next->next;
    }
};
上面两行代码等效于下面这一行代码:

*node=*node->next;

直接使用ListNode默认的赋值操作符。


版权声明:本文为博主原创文章,未经博主允许不得转载。

LeetCode237:Delete Node in a Linked List

标签:

原文地址:http://blog.csdn.net/u012501459/article/details/47041465

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