Possible Duplicate:
remove duplicate elements in an array in O(n) in C/C++
How can I remove duplicate elements from an array?
Before
array [ ] = {1,2,3,4,5,1,2,4,9,0,0}
After
array [ ] = {0,1,2,3,4,5,9}
How can I remove duplicate elements from an array? Before
After
|
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
|||
|
|
|
Use hash table and store each element into hash table. This way you will remove duplicates. This will give you O(n) complexity but you will have to add hash table support. |
|||||
|
|
check out this link: http://discuss.fogcreek.com/techInterview/default.asp?cmd=show&ixPost=1070&ixReplies=5 |
|||
|
|
|
Given that you have an array of integers, and that you know their exact bounds, you can create a lookup table with a single pass over the input (use a bit vector if you have to constrict space) and then generate the array of unique entries with a single pass over the lookup table. This would be a VERY SPECIFIC solution for a VERY SPECIFIC problem, but it does what you ask for. |
|||
|