vote up 0 vote down star

How can I easily delete duplicates in a linked list in java?

flag

I left out some details, sorry, the data structure needed to be duplicate free, sorted, and able to have an iterator. – Soldier.moth May 29 at 16:22
1  
A SortedSet like TreeSet will do all this. – Peter Lawrey Jun 1 at 20:58
@Peter Lawrey - Thanks, for the comment, I did discover the TreeSet data structure a couple days ago and it is exactly what I needed. – Soldier.moth Jun 2 at 3:29

4 Answers

vote up 8 vote down check

I don't know if your requirements is to use a linked list but if not, use a Set instead of a List (you tagged the question as 'best-practices')

link|flag
I ended up using a TreeSet instead of a plain set but it was your answer that got me to that conclusion, thanks again. – Soldier.moth May 29 at 17:09
vote up 2 vote down

Easily in terms of what? If it's a reasonably short list, the simplest solution is to dump it to a Set and then back to a List.

myList = new LinkedList<Whatever>(new HashSet<Whatever>(myList));

But why bother with this? If you don't want duplicates, you should be using a Set; if you only want a list so that you can keep the elements in the same order they were inserted, you can use a LinkedHashSet to get the best of both worlds: a Set that iterates predictably like a LinkedList.

link|flag
I agree with you not to use a List when a Set is needed. One minor detail to your code: myList = new LinkedList<Whatever>(new HashSet<Whatever>(myList)); (Since Set is an interface). Sorry for nitpicking ^^ – rodion May 29 at 16:05
vote up 9 vote down

Use a LinkedHashSet instead, and then you won't have duplicates in the first place.

link|flag
Oooh, that's good too. – mmyers May 29 at 15:55
That's the exact answer :) I used to make those all the time before they existed in the API, LinkedHasSets rock. – Bill K May 29 at 16:24
1  
I keep looking at that typo thinking it should have a cat behind it. "Link can has sets?" – Bill K May 29 at 16:25
1  
+1 -- nice. consider adding a link to the appropriate Javadoc. – Jason S May 29 at 16:46
vote up 2 vote down

Search through them and, if two represent the same thing, delete one of them.

What more do you want? Do you want advice on how to do this quickly? If that's the case, store the nodes in a hash table for easy matching when looking for duplicates.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.