给定单向链表的头指针和一个要删除的节点的值,定义一个函数删除该节点。
返回删除后的链表的头节点。
注意:此题对比原题有改动
示例 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 被删除的节点
一、双指针
class Solution { public ListNode deleteNode(ListNode head, int val) { if(head.val == val) return head.next;//当head.val == val的时候,直接删除头节点,直接返回head.val即可 ListNode pre = head, cur = head.next;//预设两个指针pre和cur while(cur != null && cur.val != val) {//当cur不为空和cur.val!=val时候,进行遍历,一旦cur.val==val则跳出 pre = cur; cur = cur.next;//正常进行索引即可 } //这个时候cur.val==val已经跳出来了,就直接把pre.next直接指向cur.next处,等同于删除了cur的节点 if(cur != null) pre.next = cur.next; return head; } }
二、单指针
class Solution { public ListNode deleteNode(ListNode head, int val) { //这个等同于单指针,与第一个版本类似 if (head == null) return null; if (head.val == val) return head.next; ListNode cur = head; while (cur.next != null && cur.next.val != val) cur = cur.next; if (cur.next != null) cur.next = cur.next.next; return head; } }
三、递归
class Solution { public ListNode deleteNode(ListNode head, int val) { //这个采用递归的思路,一旦head.val==val时候,删除该节点,返回到head.next处 if (head == null) { return null; } if (head.val == val) { return head.next; } else { head.next = deleteNode(head.next, val); } return head; } }