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

【Leetcode】237. Delete Node in a Linked List

时间:2018-07-08 21:12:49      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:init   ext   list   str   efi   mis   let   ons   class   

/**
 * 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) {
        ListNode * lastNode = node;
        while (node->next != NULL) {
            node->val = node->next->val;
            lastNode = node;
            node = node->next;
        }
        lastNode->next = NULL;
        delete node;      
    }
};

 

Your runtime beats 100.00 % of cpp submissions.

【Leetcode】237. Delete Node in a Linked List

标签:init   ext   list   str   efi   mis   let   ons   class   

原文地址:https://www.cnblogs.com/AndrewGhost/p/9281146.html

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