What is the most efficient way to remove duplicate items from an array under the constraint that axillary memory usage must be to a minimum, preferably small enough to not even require any heap allocations? Sorting seems like the obvious choice, but this is clearly not asymptotically efficient. Is there a better algorithm that can be done in place or close to in place? If sorting is the best choice, what kind of sort would be best for something like this?
|
|
|||
|
|
|
Keeping auxillary memory usage to a minimum, your best bet would be to do an efficient sort to get them in order, then do a single pass of the array with a FROM and TO index. You advance the FROM index every time through the loop. You only copy the element from FROM to TO (and increment TO) when the key is different from the last. With Quicksort, that'll average to O(n-log-n) and O(n) for the final pass. |
||
|
|
|
|
I'll answer my own question since, after posting, I came up with a really clever algorithm to do this. It uses hashing, building something like a hash set in place. It's guaranteed to be O(1) in axillary space (the recursion is a tail call), and is typically O(N) time complexity. The algorithm is as follows:
This can be shown to be O(N) provided no pathological scenario in the hashing: Even if there are no duplicates, approximately 2/3 of the elements will be eliminated at each recursion. Each level of recursion is O(n) where small n is the amount of elements left. The only problem is that, in practice, it's slower than a quick sort when there are few duplicates, i.e. lots of collisions. However, when there are huge amounts of duplicates, it's amazingly fast. Edit: In current implementations of D, hash_t is 32 bits. Everything about this algorithm assumes that there will be very few, if any, hash collisions in full 32-bit space. Collisions may, however, occur frequently in the modulus space. However, this assumption will in all likelihood be true for any reasonably sized data set. If the key is less than or equal to 32 bits, it can be its own hash, meaning that a collision in full 32-bit space is impossible. If it is larger, you simply can't fit enough of them into 32-bit memory address space for it to be a problem. I assume hash_t will be increased to 64 bits in 64-bit implementations of D, where datasets can be larger. Furthermore, if this ever did prove to be a problem, one could change the hash function at each level of recursion. Here's an implementation in the D programming language:
|
||||
|
|
|
If you sort the array, you will still need another pass to remove duplicates, so the complexity is O(N*N) in the worst case (assuming Quicksort), or O(N*sqrt(N)) using Shellsort. You can achieve O(N*N) by simply scanning the array for each element removing duplicates as you go. Here is an example in Lua:
|
|||
|
|
|
|
I don't see any way to do this without something like a bubblesort. When you find a dupe, you need to reduce the length of the array. Quicksort is not designed for the size of the array to change. This algorithm is always O(n^2) but it also use almost no extra memory -- stack or heap.
|
||
|
|
|
|
Is you have two different var for traversing a datadet insted of just one then you can limit the output by dismissing all diplicates that currently are already in the dataset. Obvious this example in C is not an efficiant sorting algorith but it is just an example on one way to look at the probkem. You could also blindly sort the data first and then relocate the data for removing dups, but I'm not sure that would be faster.
I liked the problem so I wrote a simple C test prog for it as you can see above. Make a comment if I should elaborate or you see any faults. |
||
|
|
