203.移除链表元素

点击查看代码
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode removeElements(ListNode head, int val) {
       ListNode dummy = new ListNode(-1);
       dummy.next = head;
       ListNode cur = dummy;

       while(cur.next != null){
        
        if(cur.next.val == val){
            cur.next=cur.next.next;
        }else {
            cur = cur.next;
        }

       }

       return dummy.next;

    }
}
posted @ 2026-02-05 10:55  AnoSky  阅读(1)  评论(0)    收藏  举报