题目描述

给定单向链表的头指针和一个要删除的节点的值,定义一个函数删除该节点。返回删除后的链表的头节点。

1.此题对比原题有改动

2.题目保证链表中节点的值互不相同

3.该题只会输出返回的链表和结果做对比,所以若使用 C 或 C++ 语言,你不需要 free 或 delete 被删除的节点

数据范围:

0<=链表节点值<=10000

0<=链表长度<=10000

示例1
// 输入
{2,5,1,9},5
// 返回值
{2,1,9}
// 说明
给定你链表中值为 5 的第二个节点,那么在调用了你的函数之后,该链表应变为 2 -> 1 -> 9   
示例2
// 输入
{2,5,1,9},1
// 返回值
{2,5,9}
// 说明
给定你链表中值为 1 的第三个节点,那么在调用了你的函数之后,该链表应变为 2 -> 5 -> 9   
解题思路

删除节点,需要把下一个节点的值移动到当前删除节点,然后更改当前节点的 Next

node.Val = node.Next.Val
node.Next = node.Next.Next
代码实现
/**
 * [JZ18]删除链表的节点
 *
 * @param head ListNode类
 * @param val int整型
 * @return ListNode类
 */
func deleteNode(head *Node, val int) *Node {
    if head.Value == val {
        return head.Next
    }
    pre := head
    for nil != head {
        if head.Value == val {
            head.Value = head.Next.Value
            head.Next = head.Next.Next
            break
        }
        head = head.Next
    }
    return pre
}

// 简化版 - 直接从 head 的 Next 节点开始遍历
func deleteNodeSimplify(head *Node, val int) *Node {
    if head.Value == val {
        return head.Next
    }
    pre := head
    for head.Next.Value != val {
        head = head.Next
    }
    head.Next = head.Next.Next
    return pre
}

本文由 一切随风 创作,可自由转载、引用,但需署名作者且注明文章出处。

还不快抢沙发

添加新评论