美文网首页
[Leetcode] 203. Remove Linked Li

[Leetcode] 203. Remove Linked Li

作者: gammaliu | 来源:发表于2016-04-13 21:21 被阅读0次
  1. Remove Linked List Elements

Remove all elements from a linked list of integers that have value val.
Example*****Given:* 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6Return: 1 --> 2 --> 3 --> 4 --> 5
Credits:Special thanks to @mithmatt for adding this problem and creating all test cases.

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode removeElements(ListNode head, int val) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode cur = head, pre = dummy;
        while(cur != null){
            if(cur.val == val){
                pre.next = cur.next;
                cur = cur.next;
            }
            else{
                pre = pre.next;
                cur = cur.next;
            } 
        }
        return dummy.next;
    }
}

相关文章

网友评论

      本文标题:[Leetcode] 203. Remove Linked Li

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