從零單刷Leetcode(JAVA描述)——82. 刪除排序鏈表中的重複元素 II

給定一個排序鏈表,刪除所有含有重複數字的節點,只保留原始鏈表中 沒有重複出現 的數字。

示例 1:

輸入: 1->2->3->3->4->4->5
輸出: 1->2->5
示例 2:

輸入: 1->1->1->2->3
輸出: 2->3

來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii
著作權歸領釦網絡所有。商業轉載請聯繫官方授權,非商業轉載請註明出處。

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        if(head==null||head.next==null)return head;
        ListNode dummy=new ListNode(0);
        ListNode cur=dummy;
        while(head!=null){
            boolean flag=false;
            while(head!=null && head.next!=null && head.val==head.next.val){
                flag=true;
                head=head.next;
            }
            if(!flag){
                dummy.next=head;
                dummy=dummy.next;
            }
            head=head.next;
            
        }
        dummy.next=null;
        return cur.next;
    }
}

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章