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

CTCI 2.3

时间:2014-07-08 21:58:08      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   div   new   

Implement an algorithm to delete a node in the middle of a singly linked list, given only access to that node.
EXAMPLE
Input: the node c from the linked list a->b->c->d->e
Result: nothing isreturned, but the new linked list looks like a- >b- >d->e

Deep Copy the next node to the current node, and then modify current node to next node‘s next.  Pay attention if the node is the last node, we could not delete it in this way.

public class RemoveWithOneAccess {
    public void remove(Node node) {
        //The last node could not be delete without the pervious node
        if(node == null || node.next == null) return;
        else {
            node.val = node.next.val;
            node.next = node.next.next;
        }
    }
}

 

CTCI 2.3,布布扣,bubuko.com

CTCI 2.3

标签:style   blog   color   io   div   new   

原文地址:http://www.cnblogs.com/pyemma/p/3830654.html

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