首页 > 其他 > 详细

Leet Code OJ 237. Delete Node in a Linked List [Difficulty: Easy]

时间:2016-03-02 13:24:43      阅读:125      评论:0      收藏:0      [点我收藏+]

题目:
Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.

Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4 after calling your function.

翻译:
写一个方法去删除单链表的一个节点(非尾节点),只给出访问这个节点的参数。

假定链表是1 -> 2 -> 3 -> 4,给你的节点是第三个节点(值为3),这个链表在调用你的方法后应该变为 1 -> 2 -> 4。

分析:
删除链表的节点的常规做法是修改上一个节点的next指针。然而这边并没有提供上一个节点的访问方式,故转变思路改为删除下一节点,直接将下一个节点的val和next赋值给当前节点。

代码:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public void deleteNode(ListNode node) {
        node.val=node.next.val;
        node.next=node.next.next;
    }
}

Leet Code OJ 237. Delete Node in a Linked List [Difficulty: Easy]

原文:http://blog.csdn.net/lnho2015/article/details/50778630

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!