For example:
>>> x = [1, 1, 2, 'a', 'a', 3]
>>> unique(x)
[1, 2, 'a', 3]
Assume list elements are hashable.
Clarification: The result should keep the first duplicate in the list. For example, [1, 2, 3, 2, 3, 1] becomes [1, 2, 3].
|
3
|
|||||
|
|
|
I have no experience with python, but an algorithm would be to sort the list, then remove duplicates (by comparing to previous items in the list), and finally find the position in the new list by comparing with the old list. Longer answer: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52560 |
||
|
|
|
I haven't done any tests, but one possible algorithm might be to create a second list, and iterate through the first list. If an item is not in the second list, add it to the second list.
|
||||||
|
|
|
Taken from http://www.peterbe.com/plog/uniqifiers-benchmark
|
||
|
|
|
|
||||||
|
|
|
What's going to be fastest depends on what percentage of your list is duplicates. If it's nearly all duplicates, with few unique items, creating a new list will probably be faster. If it's mostly unique items, removing them from the original list (or a copy) will be faster. Here's one for modifying the list in place:
Iterating backwards over the indices ensures that removing items doesn't affect the iteration. |
||||
|
|
|
O(n) if dict is hash, O(nlogn) if dict is tree, and simple, fixed. Thanks to Matthew for the suggestion. Sorry I don't know the underlying types.
|
|||
|
|
|
|
||||
|
|
|
You can actually do something really cool in Python to solve this. You can create a list comprehension that would reference itself as it is being built. As follows:
Edit: I removed the "self", and it works on Mac OS X, Python 2.5.1. The _[1] is Python's "secret" reference to the new list. The above, of course, is a little messy, but you could adapt it fit your needs as necessary. For example, you can actually write a function that returns a reference to the comprehension; it would look more like:
|
||||||||||
|
|
|
|
||||
|
|
|
One-liner:
|
||
|
|
|
|
Do the duplicates necessarily need to be in the list in the first place? There's no overhead as far as looking the elements up, but there is a little bit more overhead in adding elements (though the overhead should be O(1) ).
|
||
|
|
|
|
has_key in python is O(1). Insertion and retrieval from a hash is also O(1). Loops through n items twice, so O(n).
|
|||
|
|
|
|
One pass.
|
||
|
|
|
Using:
And using the timeit module:
(and so on for the various other functions -- which I named after their posters), I have the following results (on my first generation Intel MacBook Pro):
[1] Note that Allen modifies the list in place – I believe this has skewed the time, in that the timeit module runs the code 100000 times and 99999 of them are with the dupe-less list. Summary: Straight-forward implementation with sets wins over confusing one-liners :-) |
||
|
|
|
I don't know if this one is fast or not, but at least it is simple. Simply, convert it first to a set and then again to a list
|
||
|
|
|
This is the fastest in-place method I've found (assuming a large proportion of duplicates):
This is 10% faster than Allen's implementation, on which it is based (timed with timeit.repeat, JIT compiled by psyco). It keeps the first instance of any duplicate. repton-infinity: I'd be interested if you could confirm my timings. |
||
|
|
|
Benchmark and a clear anwser at : http://www.peterbe.com/plog/uniqifiers-benchmark |
||
|
|
|
|
There are some great, efficient solutions here. However, for anyone not concerned with the absolute most efficient
or the more efficient two-liner
|
||||||
|
|
|
If you take out the empty list from the call to set() in Terhost's answer, you get a little speed boost. Change:
found = set([]) However, you don't need the set at all.
Using timeit I got these results: with set([]) -- 4.97210427363 |
||||
|
|
|
Obligatory generator-based variation:
|
||
|
|
|
|
a=[1,2,3,4,5,7,7,8,8,9,9,3,45] def unique(l):
print a print unique(a) ----------------------------Inserting elements will take theta(n) retrieving if element is exiting or not will take constant time testing all the items will take also theta(n) so we can see that this solution will take theta(n) Bear in Mind that dictionary in python implemented by hash table |
||
|
|
|
Here is the fastest solution so far (for the following input):
Dictionary lookup is slightly faster then the set's one in Python 3. |
||
|
|