給定一個無序單鏈表的頭節點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;}}