刪除鏈表中全部重複元素

public ListNode deleteDuplication(ListNode pHead){
  //LinkedHashMap能夠按照輸入的順序進行輸出
  LinkedHashMap<Integer,Integer> map = new LinkedHashMap<>();
  ListNode current = pHead;
  while(current != null){
    if(!map.containsKey(current.val)){
      map.put(current.val,1);
    }else{
      int times = map.get(current.val);
      times++;
      map.put(current.val,times);
    }
    current = current.next;
  }

  ListNode newHead = null;
  ListNode point = null;
  boolean isHead = true;
  set<Integer> set = map.keySet();
  Iterator<Integer> it = set.iterator();

  //根據map中的值,只用出現一次的值來構造新表
  while(it.hasNext()){
    int temp = it.next();
    if(map.get(temp) == 1){
      ListNode currentNode = new ListNode(temp);
      if(isHead){
        newHead = curentNode;
        point = currentNode;
        isHead = false;
        continue;
      }
      point.next = currentNode;
      point = currentNode;
    }
  }
  return newHead;
}
相關文章
相關標籤/搜索