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

Remove Linked List Elements

时间:2015-04-24 06:41:32      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

基础题

注意要bug free看清楚细节得

public class Solution {
    public ListNode removeElements(ListNode head, int val) {
        if(head==null ) return null;
        ListNode h = new ListNode(-1);
        h.next = head;
        ListNode n = head, pre = h;
        while(n!=null){
            if(n.val==val){
                pre.next = n.next;
            }else{
            pre = pre.next;  
            }
            n =pre.next;
        }
        return h.next;
    }
}

 

Remove Linked List Elements

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4452264.html

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