[算法]刪除無序單鏈表中值重複出現的節點

題目:

給定一個無序單鏈表的頭節點head,刪除其中值重複出現的節點。spa

要求使用兩種方法:rem

方法一:若是鏈表長度爲N,時間複雜度達到O(N)。方法

方法二:額外空間複雜度爲O(1)。鏈表

方法一:

利用哈希表。next

	public static void removeRep(Node head){
		if(head==null)
			return;
		HashSet<Integer> set=new HashSet<>();
		Node pre=null;
		Node cur=head;
		Node next=head.next;
		while(cur!=null){
			if(set.contains(cur.val)){
				pre.next=cur.next;
			}else{
				set.add(cur.val);
				pre=cur;
			}
			cur=cur.next;
		}
		
	}

方法二:

public static void removeRep2(Node head){
		Node pre=null;
		Node cur=head;
		Node next=head.next;
		while(cur!=null){
			pre=cur;
			next=cur.next;
			while(next!=null){
				if(cur.val==next.val){
					pre.next=next.next;
					next=next.next;
				}else{
					pre=next;
					next=next.next;
				}
			}
			cur=cur.next;
		}
	}
相關文章
相關標籤/搜索