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

[leetcode]203. Remove Linked List Elements链表中删除节点

时间:2018-02-13 12:25:53      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:需要   循环   body   重要   leetcode   log   lis   etc   span   

这道题很基础也很重要

重点就是设置超前节点

public ListNode removeElements(ListNode head, int val) {
        //超前节点
        ListNode pre = new ListNode(0);
        pre.next = head;
        ListNode res = pre;
        while (pre!=null&&pre.next!=null)
        {
            if (pre.next.val==val)
            {
                pre.next = pre.next.next;
                //注意这里要跳出循环,因为节点已经跳跃一位了,不需要再更新超前节点
                continue;
            }
            pre = pre.next;
        }
        //这里不能返回head,因为head可能已经被孤立出来了
        return res.next;
    }

 

[leetcode]203. Remove Linked List Elements链表中删除节点

标签:需要   循环   body   重要   leetcode   log   lis   etc   span   

原文地址:https://www.cnblogs.com/stAr-1/p/8446301.html

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