VMware Coding Challenge: Removing Duplicates Entries

技术分享

 

 1     static LinkedListNode removeDuplicates(LinkedListNode list) {
 2         LinkedListNode cur = list;
 3         HashSet<Integer> set = new HashSet<Integer>();
 4         set.add(list.val);
 5         while (cur.next != null) {
 6             if (!set.contains(cur.next.val)) {
 7                 set.add(cur.next.val);
 8                 cur = cur.next;
 9             }
10             else {
11                 cur.next = cur.next.next;
12             }
13         }
14         return list;
15 
16     }

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。