Leetcode——删除链表的节点

Posted Yawn,

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode——删除链表的节点相关的知识,希望对你有一定的参考价值。

#1. 题目
给定单向链表的头指针和一个要删除的节点的值,定义一个函数删除该节点。

返回删除后的链表的头节点。

注意:此题对比原题有改动

示例 1:
输入: head = [4,5,1,9], val = 5
输出: [4,1,9]
解释: 给定你链表中值为 5 的第二个节点,那么在调用了你的函数之后,该链表应变为 4 -> 1 -> 9.

示例 2:
输入: head = [4,5,1,9], val = 1
输出: [4,5,9]
解释: 给定你链表中值为 1 的第三个节点,那么在调用了你的函数之后,该链表应变为 4 -> 5 -> 9.

说明:
题目保证链表中节点的值互不相同
若使用 C 或 C++ 语言,你不需要 free 或 delete 被删除的节点

2. 题解

  • 1.判断head节点是否为删除节点,如是直接返回head.next即可
  • 2.遍历找到val时,跳出循环
  • 3.删除val节点

注意 :直接删除一个节点

pre.next = cur.next

在这里插入图片描述

JAVA:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode deleteNode(ListNode head, int val) {
        if( head.val == val)   
            return head.next;
        ListNode pre = head, cur = head.next;
        while(cur != null && cur.val != val){
            pre = cur;
            cur = cur.next;
        }
        if(cur != null)                     //节点删除操作
            pre.next = cur.next;
        return head;
    }
}

C++:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* deleteNode(ListNode* head, int val) {
        if(head->val == val)
            return head -> next;
        ListNode *pre = head, *cur = head->next;        //pre与cur都是指向head的指针
        while(cur != nullptr && cur -> val != val){
            pre = cur;
            cur =cur -> next;
        }
        if(cur != nullptr)
            pre -> next = cur -> next;      //删除节点
        return head;
    }
};

以上是关于Leetcode——删除链表的节点的主要内容,如果未能解决你的问题,请参考以下文章

leetcode -- 19 删除链表的倒数第N个节点

LeetCode 19. 删除链表的倒数第N个节点

LeetCode - 19 - 删除链表的倒数第N个节点 - Java

LeetCode 19删除链表的倒数第N个节点

LeetCode 19 - 删除链表的倒数第N个节点 - [链表]

LeetCode19删除链表的倒数第N个节点