码迷,mamicode.com
首页 > 系统相关 > 详细

VMware Coding Challenge: Removing Duplicates Entries

时间:2015-03-07 06:16:45      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 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     }

 

VMware Coding Challenge: Removing Duplicates Entries

标签:

原文地址:http://www.cnblogs.com/EdwardLiu/p/4319663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!