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

LeetCode:删除链表中的节点

时间:2018-07-05 00:45:20      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:public   c++   nod   etc   ||   删除链表   void   技术   分享   

技术分享图片
C++示例:

/**
 * 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) {
        if (node == NULL || node->next == NULL) {
            cout << "The node is empty or the node is the rear node." << endl;
            return;
        }
        ListNode* temp = node->next;
        node->val = temp->val;
        node->next = temp->next;
        delete temp;
    }
};

LeetCode:删除链表中的节点

标签:public   c++   nod   etc   ||   删除链表   void   技术   分享   

原文地址:https://www.cnblogs.com/yiluyisha/p/9266072.html

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