美文网首页
[Lintcode][java]删除链表中的元素

[Lintcode][java]删除链表中的元素

作者: 第六象限 | 来源:发表于2017-11-06 18:56 被阅读0次

删除链表中等于给定值val的所有节点。
样例
给出链表 1->2->3->3->4->5->3, 和 val = 3, 你需要返回删除3之后的链表:1->2->4->5。

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


public class Solution {
    /*
     * @param head: a ListNode
     * @param val: An integer
     * @return: a ListNode
     */
    public ListNode removeElements(ListNode head, int val) {
        ListNode result = head;
        if(head==null) return null;
        while (head.next!=null)
        {
            if(head.next.val == val)
            {
                if(head.next.next!=null)
                    head.next=head.next.next;
                else 
                {
                  head.next=null;
                  break;
                }
            }
            else
            {
            
                head=head.next;
            }

        }
        if(result.val==val) return result.next;
        return result;
    }

}

相关文章

网友评论

      本文标题:[Lintcode][java]删除链表中的元素

      本文链接:https://www.haomeiwen.com/subject/dfxrmxtx.html