题解 | #删除有序链表中重复的元素-I#

删除有序链表中重复的元素-I

https://www.nowcoder.com/practice/c087914fae584da886a0091e877f2c79

import java.util.*;

public class Solution {
    public ListNode deleteDuplicates (ListNode head) {
        if(head==null||head.next==null)
            return head;
        
        TreeSet<Integer> set = new TreeSet(){};
        ListNode p = head;
        ListNode dummy = new ListNode(0);
        ListNode q = dummy;

        while(p!=null){
            set.add(p.val);
            p=p.next;
        }
        for(Integer i: set){
            q.next = new ListNode(i);
            q=q.next;
        }

        return dummy.next;
    }
}





全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务